Skip to content

Commit 3eee320

Browse files
committed
Merge branch 'dev' into jace/sandbox
2 parents 83f70dc + 09db2a1 commit 3eee320

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/components/left-sidebar/ComponentTab/CreateMenu.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Description:
88
<template>
99
<div class="create-component-div drawer-menu">
1010
<q-expansion-item group="accordion" label="Import Component">
11-
<ImportComponent v-if="activeComponent === ''" @imported="createComponent" title="Import Component" class="sidebar-btn"/>
11+
<ImportComponent v-if="activeComponent === ''" @imported="createComponent" title="Import Component (coming soon)" class="sidebar-btn" :disable = "true"/>
1212
</q-expansion-item>
1313
<q-expansion-item group="accordion" label="Create Component">
1414
<form class="create-component-form" v-on:submit.prevent="createComponent">

src/components/left-sidebar/ComponentTab/Icons.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export default {
3737
data() {
3838
return {
3939
//to give the child componenets of the active components icons
40-
childIcon: ["fa-solid fa-code"]
40+
childIcon: ["fas fa-code fa-lg"]
4141
};
4242
},
4343
name: "Icons",

src/components/left-sidebar/ComponentTab/UpdateMenu.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Description:
6565
<br />
6666
</q-expansion-item>
6767
<InputHTMLMenu v-model="attributeModal" v-if="attributeModal === true && this.activeLayer.lineage.length === 0 " class="htmlElement-selected"/>
68-
<q-expansion-item group="accordion" label="HTML Attributes">
68+
<q-expansion-item group="accordion" label="Component Attributes">
6969
<AttributesSubMenu />
7070
</q-expansion-item>
7171
<!-- Props item that has AddProps component in it -->

src/components/right-sidebar/tutorial/NewVersionInfo.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
<p class="info-sub-heading">Add class, id, and v-model Attributes </p>
2626
<p class="infoContent">There are multiple ways to add attributes.
27-
One method is to click on the HTML Attributes drop down button. Specify the attribute by selecting either id or
27+
One method is to click on the Component Attributes drop down button. Specify the attribute by selecting either id or
2828
class. Click the <img style="vertical-align:middle" alt="save" src="../../../assets/plussign.png"
2929
class="tut-image"> or enter to apply the attribute. <br>
3030
Another method is to double click the purple HTML tag.<img style="vertical-align:middle" alt="save"

0 commit comments

Comments
 (0)