diff --git a/webui/src/components/utils/Editable.svelte b/webui/src/components/utils/Editable.svelte index c479c69..2ffe47e 100644 --- a/webui/src/components/utils/Editable.svelte +++ b/webui/src/components/utils/Editable.svelte @@ -3,6 +3,7 @@ import { createEventDispatcher } from "svelte"; import type { IValue } from "upend/types"; import IconButton from "./IconButton.svelte"; + import { isEqual } from "lodash"; const dispatch = createEventDispatcher(); export let editable: boolean; @@ -18,6 +19,7 @@ dispatch("edit", newValue)} /> @@ -33,5 +35,6 @@ .selector { flex-grow: 1; + min-width: 0; }