-
-
Notifications
You must be signed in to change notification settings - Fork 14
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
refactor(ContributionAssistant): Add support for new Not A Price option on canvas #1359
Conversation
@@ -429,6 +429,7 @@ | |||
"PriceTagWithPrice": "Price tag with a price", | |||
"PriceTagTruncated": "Price tag marked as truncated", | |||
"PriceTagUnreadable": "Price tag marked as unreadable", | |||
"PriceTagNotAPrice": "Price tag marked as not a price", |
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.
wondering if we should repeat "Price tag" everywhere, or have a shorter version ?
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 was wondering the same and almost removed it.
But I wasn't sure if "without a price" was understandable since there is no verb. ("Marked as unreadable" would be ok)
@@ -29,15 +29,15 @@ | |||
</v-btn> | |||
</template> | |||
<v-list> | |||
<v-list-item :slim="true" prepend-icon="mdi-eye-off-outline" @click="removePriceTag(2)"> | |||
<v-list-item :slim="true" prepend-icon="mdi-eye-off-outline" @click="removePriceTag(constants.PRICE_TAG_STATUS_UNREADABLE)"> |
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.
didn't know you could call constants in the template like this 👀
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.
Now that you mention it, it does seem a bit odd. Let's hope there are no side effects
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.
ok i think it doesn't work, reverting
What
Screenshot