-
Notifications
You must be signed in to change notification settings - Fork 176
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
Disable bulk editing of all new metadata #3779
Disable bulk editing of all new metadata #3779
Conversation
Prevents overriding of individual metadata.
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.
@@ -54,22 +54,25 @@ | |||
@focus="trackClick('Description')" | |||
/> | |||
</VFlex> | |||
<VFlex xs12 md6 :class="{ 'pl-2': $vuetify.breakpoint.mdAndUp }"> | |||
<VFlex xs12 :[mdValue]="true" :class="{ 'pl-2': $vuetify.breakpoint.mdAndUp }"> |
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.
Perhaps conditionally apply the pl-2
class on && oneSelected
@@ -54,22 +54,25 @@ | |||
@focus="trackClick('Description')" | |||
/> |
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.
With the computed mdValue
on the VFlex
below, perhaps move the v-if="oneSelected"
on the description field to it's parent VFlex
Ah yeah - I was in a little bit of a rush, let's sort out that whitespace. |
Awaiting sign off from @jtamiace. |
All comments addressed, @jtamiace concurs! |
Summary
Description of the change(s) you made
Manual verification steps performed
Screenshots (if applicable)
Does this introduce any tech-debt items?
We will need to address this at least when we implement the new bulk editing workflows.
Updating the data processing to match how we handle the 'merge' behaviour for bulk editing in tags will be the first step
We will also need a way to indicate multiselect with indeterminate states in KSelect to implement this.
Fixes #3769