Skip to content

Commit 4cb89f9

Browse files
committed
set showOptionValue to false to hide dup text in dropdown
1 parent da136da commit 4cb89f9

File tree

5 files changed

+8
-0
lines changed

5 files changed

+8
-0
lines changed

packages/backend/src/apps/delay/actions/delay-for/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ const action: IRawAction = {
1616
value: null,
1717
description: 'Delay for unit, e.g. minutes, hours, days, weeks.',
1818
variables: false,
19+
showOptionValue: false,
1920
options: [
2021
{
2122
label: 'Minutes',

packages/backend/src/apps/scheduler/triggers/every-day/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ const trigger: IRawTrigger = {
3838
required: true,
3939
value: null,
4040
variables: false,
41+
showOptionValue: false,
4142
options: [
4243
{
4344
label: '00:00',

packages/backend/src/apps/scheduler/triggers/every-month/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ const trigger: IRawTrigger = {
2121
required: true,
2222
value: null,
2323
variables: false,
24+
showOptionValue: false,
2425
options: [
2526
{
2627
label: '1',
@@ -156,6 +157,7 @@ const trigger: IRawTrigger = {
156157
required: true,
157158
value: null,
158159
variables: false,
160+
showOptionValue: false,
159161
options: [
160162
{
161163
label: '00:00',

packages/backend/src/apps/scheduler/triggers/every-week/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ const trigger: IRawTrigger = {
2121
required: true,
2222
value: null,
2323
variables: false,
24+
showOptionValue: false,
2425
options: [
2526
{
2627
label: 'Monday',
@@ -60,6 +61,7 @@ const trigger: IRawTrigger = {
6061
required: true,
6162
value: null,
6263
variables: false,
64+
showOptionValue: false,
6365
options: [
6466
{
6567
label: '00:00',

packages/backend/src/apps/slack/actions/find-message/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ const action: IRawAction = {
2525
required: true,
2626
value: 'score',
2727
variables: false,
28+
showOptionValue: false,
2829
options: [
2930
{
3031
label: 'Match strength',
@@ -45,6 +46,7 @@ const action: IRawAction = {
4546
required: true,
4647
value: 'desc',
4748
variables: false,
49+
showOptionValue: false,
4850
options: [
4951
{
5052
label: 'Descending (newest or best match first)',

0 commit comments

Comments
 (0)