Skip to content

Commit

Permalink
🎨: add template name to the title in EditInstance
Browse files Browse the repository at this point in the history
  • Loading branch information
itisAliRH authored and mvdbeek committed Oct 11, 2024
1 parent 21a842d commit bea8589
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ interface Props {
const props = defineProps<Props>();
const { instance, template } = useInstanceAndTemplate(ref(props.instanceId));
const title = computed(() => `Edit File Source ${instance.value?.name} Settings`);
const title = computed(() => `Edit ${template.value?.name} settings for ${instance.value?.name}`);
const errorDataDescription = "file-source-update-error";
const {
Expand Down

0 comments on commit bea8589

Please sign in to comment.