Skip to content

Commit

Permalink
fix(ui): display Bitbucket Server event source icon in event flow. Fixes
Browse files Browse the repository at this point in the history
 #13386 (#13387)

Signed-off-by: sh.yoon <[email protected]>
  • Loading branch information
shyoon-devops authored Jul 24, 2024
1 parent c551304 commit c16c5e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions ui/src/app/event-flow/icons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export const icons: {[type: string]: Icon} = {
awsLambdaTrigger: compute,
argoWorkflowTrigger: 'stream',
azureEventsHubEventSource: storage,
bitbucketserverEventSource: git,
calendarEventSource: 'clock',
collapsed: 'ellipsis-h',
conditions: 'filter',
Expand Down
2 changes: 2 additions & 0 deletions ui/src/models/event-source.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export interface EventSource {
spec: {
amqp?: {[key: string]: {}};
azureEventsHub?: {[key: string]: {}};
bitbucketserver?: {[key: string]: {}};
calendar?: {[key: string]: {}};
emitter?: {[key: string]: {}};
file?: {[key: string]: {}};
Expand Down Expand Up @@ -52,6 +53,7 @@ export type EventSourceWatchEvent = kubernetes.WatchEvent<EventSource>;
export const EventSourceTypes = [
'amqp',
'azureEventsHub',
'bitbucketserver',
'calendar',
'emitter',
'file',
Expand Down

0 comments on commit c16c5e4

Please sign in to comment.