Skip to content

Commit

Permalink
precommit
Browse files Browse the repository at this point in the history
  • Loading branch information
bedanley committed Feb 3, 2025
1 parent cebf6e5 commit 07e2d8f
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ export function DocumentLibraryComponent ({ repositoryId }: DocumentLibraryCompo
allDocs ?? [], {
filtering: {
empty: (
<Box margin={{ vertical: 'xs' }} textAlign="center">
<SpaceBetween size="m">
<Box margin={{ vertical: 'xs' }} textAlign='center'>
<SpaceBetween size='m'>
<b>No documents</b>
</SpaceBetween>
</Box>
Expand Down Expand Up @@ -143,8 +143,8 @@ export function DocumentLibraryComponent ({ repositoryId }: DocumentLibraryCompo
enableKeyboardNavigation
items={items}
loading={isFetching}
loadingText="Loading documents"
selectionType="multi"
loadingText='Loading documents'
selectionType='multi'
filter={
<TextFilter
{...filterProps}
Expand All @@ -160,8 +160,8 @@ export function DocumentLibraryComponent ({ repositoryId }: DocumentLibraryCompo
}
actions={
<SpaceBetween
direction="horizontal"
size="xs"
direction='horizontal'
size='xs'
>
<ButtonDropdown
items={actionItems}
Expand All @@ -182,10 +182,10 @@ export function DocumentLibraryComponent ({ repositoryId }: DocumentLibraryCompo
}
preferences={
<CollectionPreferences
title="Preferences"
title='Preferences'
preferences={preferences}
confirmLabel="Confirm"
cancelLabel="Cancel"
confirmLabel='Confirm'
cancelLabel='Cancel'
onConfirm={({ detail }) => setPreferences(detail)}
contentDisplayPreference={{ title: 'Select visible columns', options: TABLE_PREFERENCES }}
pageSizePreference={{ title: 'Page size', options: PAGE_SIZE_OPTIONS }}
Expand Down

0 comments on commit 07e2d8f

Please sign in to comment.