Skip to content

Commit 376205d

Browse files
committed
change name of not started yet to not started
1 parent a8f7aa0 commit 376205d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/status-indicator/interfaces.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,6 @@ export namespace StatusIndicatorProps {
5454
| 'pending'
5555
| 'in-progress'
5656
| 'loading'
57-
| 'not-started-yet';
57+
| 'not-started';
5858
export type Color = 'blue' | 'grey' | 'green' | 'red' | 'yellow';
5959
}

src/status-indicator/internal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const typeToIcon: (size: IconProps.Size) => Record<StatusIndicatorProps.Type, JS
4545
pending: <InternalIcon name="status-pending" size={size} />,
4646
'in-progress': <InternalIcon name="status-in-progress" size={size} />,
4747
loading: <InternalSpinner />,
48-
'not-started-yet': <InternalIcon name="status-not-started" size={size} />,
48+
'not-started': <InternalIcon name="status-not-started" size={size} />,
4949
});
5050

5151
export default function StatusIndicator({

src/status-indicator/styles.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ $_status-colors: (
1818
'pending': awsui.$color-text-status-inactive,
1919
'in-progress': awsui.$color-text-status-inactive,
2020
'loading': awsui.$color-text-status-inactive,
21-
'not-started-yet': awsui.$color-text-status-inactive,
21+
'not-started': awsui.$color-text-status-inactive,
2222
);
2323

2424
$_color-overrides: (

0 commit comments

Comments
 (0)