fix: default value for label

Signed-off-by: Braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
Braks
2021-11-18 15:33:36 +01:00
parent 156287b9d2
commit 6bcd708234
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ const props = withDefaults(defineProps<SmoothStepEdgeProps>(), {
selected: false,
sourcePosition: Position.Bottom,
targetPosition: Position.Top,
label: () => '',
label: '',
labelStyle: () => ({}),
labelShowBg: true,
labelBgStyle: () => ({}),
+1 -1
View File
@@ -37,7 +37,7 @@ const props = withDefaults(defineProps<StepEdgeProps>(), {
selected: false,
sourcePosition: Position.Bottom,
targetPosition: Position.Top,
label: () => '',
label: '',
labelStyle: () => ({}),
labelShowBg: true,
labelBgStyle: () => ({}),
+1 -1
View File
@@ -38,7 +38,7 @@ const props = withDefaults(defineProps<StraightEdgeProps>(), {
selected: false,
sourcePosition: Position.Bottom,
targetPosition: Position.Top,
label: () => '',
label: '',
labelStyle: () => ({}),
labelShowBg: true,
labelBgStyle: () => ({}),