-
Notifications
You must be signed in to change notification settings - Fork 5
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
Feature: detail panel select #360
base: main
Are you sure you want to change the base?
Conversation
208bca2
to
18e3cf4
Compare
a6ddbc1
to
0cbe482
Compare
0cbe482
to
95a4a95
Compare
/** | ||
* Initialize the options for the select. | ||
*/ | ||
function initOptions() { |
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.
duplicated x4
|
||
options.value = [{ | ||
type: 'category', | ||
name: 'default', |
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.
i18n
})), | ||
}, { | ||
type: 'category', | ||
name: 'variable', |
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.
i18n
95a4a95
to
d51cce5
Compare
Checking /home/runner/work/leto-modelizer/leto-modelizer/package.json
@quasar/app-webpack =3.9.6 → =3.11.0
cypress =12.17.4 → =13.2.0
monaco-editor =0.41.0 → =0.43.0
quasar =2.12.6 → =2.12.7
Run npx npm-check-updates -x leto-modelizer* -u to upgrade package.json |
Kudos, SonarCloud Quality Gate passed! |
:key="child.name" | ||
:item="child" | ||
class="item-list" | ||
@select-item="(value) => $emit('select-item', value)" |
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.
I would put something more specific than 'select-name' as the event name, maybe "'item-clicked" or something like that
src/components/inputs/ArrayInput.vue
Outdated
const variables = ref(plugin.value.data.variables || []); | ||
|
||
/** | ||
* Initialize the options for the select. |
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.
Could you be a little more specific about the description ? Specially about the "for the select"
src/components/inputs/LinkInput.vue
Outdated
/** | ||
* Initialize the options for the select. | ||
*/ | ||
function initOptions() { |
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.
already used 3times. I would rather put this in some kind of utility file and import this function in the component
Resolve #305