Skip to content

Commit

Permalink
Misalignment typo. Min/Default params added to interface.
Browse files Browse the repository at this point in the history
  • Loading branch information
hujambo-dunia committed Nov 13, 2023
1 parent 1a116d9 commit e535633
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion client/src/components/Form/FormRepeat.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ const FormNode = defineAsyncComponent(() => import("./FormInputs.vue"));
interface Input {
name: string;
title: string;
min: number;
default: number;
max: number|string;
help?: string;
cache: Array<Record<string, unknown>>;
Expand Down Expand Up @@ -108,7 +110,7 @@ const { keyObject } = useKeyedObjects();
class="card"
:title="getTitle(cacheId)">
<template v-slot:operations>
<span v-if="!props.sustainRepeats" class="float-right">
<span v-if="!props.sustainRepeats" class="float-right">
<b-button-group>
<b-button
:id="getButtonId(cacheId, 'up')"
Expand Down

0 comments on commit e535633

Please sign in to comment.