-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue 65 #144
Issue 65 #144
Conversation
src/components/settings/TagsTab.vue
Outdated
<input | ||
type="text" | ||
placeholder="Add tag" | ||
@input=" | ||
(evt) => | ||
$store.commit('config/editTagText', { | ||
id: tag.id, | ||
text: evt.target.value, | ||
}) | ||
" | ||
:value="tag.text" | ||
/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please make this a vue-tags-input
that they can enter tags directly into. (Without autocomplete.)
src/modules/PersistenceUtility.js
Outdated
@@ -34,6 +34,7 @@ const defaultConfig = { | |||
ai: { | |||
enabled: false, | |||
}, | |||
tags: [], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please change the name to defaultTags
.
src/store/modules/config.js
Outdated
@@ -16,6 +16,7 @@ export const config = { | |||
debugMode: false, | |||
summary: false, | |||
templates: [], | |||
tags: [{ id: "1", text: "Canada" }], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please change to defaultTags
.
src/store/modules/config.js
Outdated
@@ -114,6 +131,7 @@ export const config = { | |||
fullConfig: (state) => { | |||
return state; | |||
}, | |||
tags: (state) => state.tags, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please change to defaultTags
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@devknight216 this needs one small update and then its ready to merge
src/components/ControlPanel.vue
Outdated
@@ -733,6 +734,7 @@ | |||
<AddEvidenceDialog | |||
v-if="evidenceData" | |||
v-model="addEvidenceDialog" | |||
:evidenceData="evidenceData" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@devknight216 - This looks like a duplicate of the line below and doesn't exist in the props
of AddEvidenceDialog
so please remove it
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@dacoaster, just removed that. :) Please merge it on your side.
Pull Request type
What is the current behavior?
Issue Number: 65
What is the new behavior?
Does this introduce a breaking change?