chore(FE): Fix inconsistent indentation in ChickLogsView and

RecordingForm
This commit is contained in:
rstubryan
2026-03-08 22:13:26 +07:00
parent 7207f1ba75
commit 2ff32094ce
2 changed files with 24 additions and 25 deletions
@@ -200,7 +200,6 @@ const ChickinLogsView = ({
</div> </div>
)} )}
</div> </div>
</> </>
); );
}; };
@@ -3008,18 +3008,18 @@ const RecordingForm = ({ type = 'add', initialValues }: RecordingFormProps) => {
type='button' type='button'
color='error' color='error'
onClick={deleteRecordingClickHandler} onClick={deleteRecordingClickHandler}
className='px-4' className='px-4'
> >
<Icon <Icon
icon='material-symbols:delete-outline-rounded' icon='material-symbols:delete-outline-rounded'
width={24} width={24}
height={24} height={24}
className='justify-start text-sm' className='justify-start text-sm'
/> />
Delete Delete
</Button> </Button>
</RequirePermission> </RequirePermission>
)} )}
{type === 'detail' && {type === 'detail' &&
initialValues && initialValues &&
isRecordingEditable(initialValues) && ( isRecordingEditable(initialValues) && (
@@ -3028,18 +3028,18 @@ const RecordingForm = ({ type = 'add', initialValues }: RecordingFormProps) => {
type='button' type='button'
color='warning' color='warning'
href={`/production/recording/detail/edit/?recordingId=${initialValues.id}`} href={`/production/recording/detail/edit/?recordingId=${initialValues.id}`}
className='px-4' className='px-4'
> >
<Icon <Icon
icon='material-symbols:edit-outline' icon='material-symbols:edit-outline'
width={24} width={24}
height={24} height={24}
className='justify-start text-sm' className='justify-start text-sm'
/> />
Edit Edit
</Button> </Button>
</RequirePermission> </RequirePermission>
)} )}
</div> </div>
{/* Right side actions */} {/* Right side actions */}
<div className='flex flex-col sm:flex-row sm:justify-end gap-2 w-full sm:w-auto'> <div className='flex flex-col sm:flex-row sm:justify-end gap-2 w-full sm:w-auto'>