Skip to content

Commit 1a690b3

Browse files
committed
Make project summary input textarea
Allows more space for editing it, especially since the char limit has been removed.
1 parent 6cebf82 commit 1a690b3

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

resources/views/livewire/projects/create-project.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<flux:input wire:model="tools" :label="__('Tools')" type="text" />
1111

12-
<flux:input wire:model="summary" :label="__('Summary')" type="text" />
12+
<flux:textarea wire:model="summary" :label="__('Summary')" />
1313

1414
<div class="flex gap-4">
1515
<flux:input wire:model="coverImage" :label="__('Cover Image')" type="file" onchange="attachmentSelected(this.value)" />

resources/views/livewire/projects/edit-project.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<flux:input wire:model="tools" :label="__('Tools')" type="text" />
1111

12-
<flux:input wire:model="summary" :label="__('Summary')" type="text" />
12+
<flux:textarea wire:model="summary" :label="__('Summary')" />
1313

1414
<div class="flex gap-4">
1515
<flux:input wire:model="coverImage" iconLeading="paper-clip" :label="__('Cover Image')" type="file" onchange="attachmentSelected(this.value)" />

0 commit comments

Comments
 (0)