Skip to content

Commit

Permalink
lint issue Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
Jalander Ramagiri committed Dec 13, 2023
1 parent 9099a58 commit 491e216
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
7 changes: 3 additions & 4 deletions packages/core/src/config/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,10 +154,9 @@ export interface ISpinnakerSettings {
kubernetesAdHocInfraWritesEnabled: boolean;
changelogUrl: string;
cdevents?: {
validUrlPattern: string;
validCDEvent: string;
};

validUrlPattern: string;
validCDEvent: string;
};
}

export const SETTINGS: ISpinnakerSettings = (window as any).spinnakerSettings || {};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,7 @@ export class CDEventsNotificationType extends React.Component<INotificationTypeC
name={fieldName ? `${fieldName}.cdEventsType` : 'cdEventsType'}
validate={Validators.skipIfSpel(Validators.cdeventsTypeValue('Please enter a valid CDEvents Type'))}
input={(props) => (
<TextInput
inputClassName={'form-control input-sm'}
{...props}
placeholder="Enter a CDEvents type"
/>
<TextInput inputClassName={'form-control input-sm'} {...props} placeholder="Enter a CDEvents type" />
)}
required={true}
/>
Expand Down

0 comments on commit 491e216

Please sign in to comment.