Skip to content
Snippets Groups Projects

Resolve "Add feature to upload parameters and reran workflows with same parameters"

20 files
+ 619
262
Compare changes
  • Side-by-side
  • Inline
Files
20
@@ -5,9 +5,11 @@ const props = defineProps<{
modalId: string;
modalLabel: string;
staticBackdrop?: boolean;
sizeModifier?: string; // https://getbootstrap.com/docs/5.3/components/modal/#optional-sizes, e.g. sm, lg and xl
sizeModifier?: sizeModifierType; // https://getbootstrap.com/docs/5.3/components/modal/#optional-sizes, e.g. sm, lg and xl
}>();
type sizeModifierType = "sm" | "lg" | "xl";
const modalSizeClass = computed<string>(() => {
if (props.sizeModifier == undefined) {
return "";
Loading