Skip to content

Commit

Permalink
[Fix] Custom object icon update (#8762)
Browse files Browse the repository at this point in the history
  • Loading branch information
ijreilly authored Nov 26, 2024
1 parent 3159382 commit 149ce68
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ export const SettingsDataModelObjectAboutForm = ({
watch('nameSingular');
watch('namePlural');
watch('description');
watch('icon');
const apiNameTooltipText = isLabelSyncedWithName
? 'Deactivate "Synchronize Objects Labels and API Names" to set a custom API name'
: 'Input must be in camel case and cannot start with a number';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const WithStandardSelected: Story = {
play: async () => {
const canvas = within(document.body);

await canvas.findByText('New Object', undefined, { timeout: 2000 });
await canvas.findByText('New Object', undefined, { timeout: 5000 });

const listingInput = await canvas.findByPlaceholderText('Listing');
const pluralInput = await canvas.findByPlaceholderText('Listings');
Expand Down

0 comments on commit 149ce68

Please sign in to comment.