Skip to content

Commit

Permalink
chore: rename LabelInputs to ComboLabelInput
Browse files Browse the repository at this point in the history
  • Loading branch information
ndom91 committed Oct 8, 2024
1 parent 5005e70 commit 667032c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions apps/desktop/src/lib/branch/BranchLabel.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script lang="ts">
import LabelInput from '$lib/shared/LabelInput.svelte';
import ComboLabelInput from '$lib/shared/ComboLabelInput.svelte';
interface Props {
name: string;
Expand All @@ -10,4 +10,4 @@
let { name, disabled = false, onChange }: Props = $props();
</script>

<LabelInput class="text-14 text-bold" value={name} {disabled} {onChange} />
<ComboLabelInput class="text-14 text-bold" value={name} {disabled} {onChange} />
4 changes: 2 additions & 2 deletions apps/desktop/src/lib/branch/StackingBranchDescription.svelte
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script lang="ts">
import LabelInput from '$lib/shared/LabelInput.svelte';
import ComboLabelInput from '$lib/shared/ComboLabelInput.svelte';
interface Props {
value: string;
Expand All @@ -10,7 +10,7 @@
let { value, disabled = false, onChange }: Props = $props();
</script>

<LabelInput
<ComboLabelInput
class="branch-description text-12"
placeholder="Series description"
multiline
Expand Down

0 comments on commit 667032c

Please sign in to comment.