We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b227a36 commit 10b2e8eCopy full SHA for 10b2e8e
2 files changed
client/src/components/Panels/ToolBox.vue
@@ -500,7 +500,7 @@ function onLabelToggle(labelId: string) {
500
</section>
501
</div>
502
503
- <ToolRequestForm :show.sync="showToolRequestForm" />
+ <ToolRequestForm v-if="showToolRequestForm" :show.sync="showToolRequestForm" />
504
505
<div class="unified-panel-body">
506
<div class="toolMenuContainer">
client/src/components/Tool/ToolRequestForm.vue
@@ -150,7 +150,7 @@ async function submit() {
150
type="text"
151
title="Homepage / Repository URL"
152
help="e.g. https://github.com/..."
153
- :error="urlError" />
+ :error="urlError || undefined" />
154
155
<FormElement
156
id="tool-request-description"
0 commit comments