You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/components/ComponentDisplay.vue
+69-52Lines changed: 69 additions & 52 deletions
Original file line number
Diff line number
Diff line change
@@ -105,70 +105,44 @@
105
105
style="width: 250px; background-color: #201221;"
106
106
/>
107
107
</q-dialog>
108
+
108
109
<!-- some irregularity (delete event listener firing on bkspc/del) with the modal when stored locally, so modal open stored in state, and triggers to local reflect only stateful change.-->
<pclass="title">Adding notes to {{ this.activeComponent }}</p>
113
114
<divclass="noteContainer">
114
-
<liv-for="(note, index) in this.componentMap[this.activeComponent].noteList":key="note"@click="deleteNote">
115
-
Note #{{index}}:
116
-
<divclass="noteblock">{{ note }}</div>
117
-
</li>
118
-
</div>
119
-
<q-formclass="formBox"autofocus>
120
-
<q-input
121
-
v-model="noteText"
122
-
label="Add your note here"
123
-
filled
124
-
dark
125
-
max-height="15%"
126
-
autofocustrue
127
-
></q-input>
128
-
<q-btn
129
-
color="secondary"
130
-
label="Submit Note"
131
-
type="submit"
132
-
:disable="noteText.length > 0 ? false : true"
133
-
@click="submitNote"
134
-
/>
135
-
</q-form>
136
-
</div>
137
-
</div>
138
-
</q-dialog>
139
-
<!-- some irregularity (delete event listener firing on bkspc/del) with the modal when stored locally, so modal open stored in state, and triggers to local reflect only stateful change.-->
0 commit comments