Skip to content

Commit dcc3c47

Browse files
Lookup lists paste terms split on doesn’t display default value complete
1 parent 43d078f commit dcc3c47

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/projects/projectId/lookup-lists/lookupListId/PasteLookupListModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export default function PasteLookupListModal() {
3636
<div className="grid justify-center items-center gap-x-2 gap-y-1 justify-items-start" style={{ gridTemplateColumns: 'max-content min-content' }}>
3737
<span>Split On</span>
3838
<input value={inputSplit} type="text" onInput={(e: any) => setInputSplit(e.target.value)}
39-
className="h-8 w-10 text-sm border-gray-300 rounded-md placeholder-italic border text-gray-900 pl-4 placeholder:text-gray-400 focus:outline-none focus:ring-2 focus:ring-gray-300 focus:ring-offset-2 focus:ring-offset-gray-100" />
39+
className="h-8 w-12 text-sm border-gray-300 rounded-md placeholder-italic border text-gray-900 pl-4 placeholder:text-gray-400 focus:outline-none focus:ring-2 focus:ring-gray-300 focus:ring-offset-2 focus:ring-offset-gray-100" />
4040
</div>
4141
<div className="mt-3" style={{ maxHeight: '80vh' }}>
4242
<textarea value={inputArea} onInput={(e: any) => setInputArea(e.target.value)}

src/components/projects/projectId/lookup-lists/lookupListId/RemoveLookupListModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export default function RemoveLookupListModal() {
3737
<div className="grid justify-center items-center gap-x-2 gap-y-1 justify-items-start" style={{ gridTemplateColumns: 'max-content min-content' }}>
3838
<span>Split On</span>
3939
<input value={inputSplit} type="text" onInput={(e: any) => setInputSplit(e.target.value)}
40-
className="h-8 w-10 border-gray-300 rounded-md placeholder-italic border text-gray-900 pl-4 placeholder:text-gray-400 focus:outline-none focus:ring-2 focus:ring-gray-300 focus:ring-offset-2 focus:ring-offset-gray-100" />
40+
className="h-8 w-12 border-gray-300 rounded-md placeholder-italic border text-gray-900 pl-4 placeholder:text-gray-400 focus:outline-none focus:ring-2 focus:ring-gray-300 focus:ring-offset-2 focus:ring-offset-gray-100" />
4141
</div>
4242
<div className="mt-3" style={{ maxHeight: '80vh' }}>
4343
<textarea value={inputArea} onInput={(e: any) => setInputArea(e.target.value)}

0 commit comments

Comments
 (0)