Skip to content

Commit

Permalink
Shareability: update xAxisType enum to string enum (tensorflow#6235)
Browse files Browse the repository at this point in the history
Adjust xAxisType to string enum as it will be utilized for internal link sharing.
  • Loading branch information
japie1235813 authored Mar 13, 2023
1 parent 8bb246b commit cd1283d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tensorboard/webapp/metrics/internal_types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ export enum PluginType {
}

export enum XAxisType {
STEP,
RELATIVE,
WALL_TIME,
STEP = 'step',
RELATIVE = 'relative',
WALL_TIME = 'walltime',
}

export interface CardMetadata {
Expand Down

0 comments on commit cd1283d

Please sign in to comment.