Skip to content

Commit 265bb81

Browse files
authored
Merge pull request #138 from ISISComputingGroup/use_str_rundurations
use str rundurations
2 parents 9d3985d + d057e88 commit 265bb81

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

app/components/Instrument.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,8 @@ export class Instrument {
150150
human_readable_name: "Start time",
151151
},
152152
{
153-
pvaddress: `${this.prefix}DAE:RUNDURATION`,
154-
human_readable_name: "Run time(s)",
153+
pvaddress: `${this.prefix}DAE:RUNDURATION_STR`,
154+
human_readable_name: "Run time",
155155
},
156156
{ pvaddress: `${this.prefix}DAE:PERIOD`, human_readable_name: "Period" },
157157
{
@@ -163,8 +163,8 @@ export class Instrument {
163163
human_readable_name: "Num periods",
164164
},
165165
{
166-
pvaddress: `${this.prefix}DAE:RUNDURATION_PD`,
167-
human_readable_name: "Period Run Time(s)",
166+
pvaddress: `${this.prefix}DAE:RUNDURATION_PD_STR`,
167+
human_readable_name: "Period Run Time",
168168
},
169169
{
170170
pvaddress: `${this.prefix}DAE:PERIODSEQ`,

app/components/__snapshots__/TopBar.test.ts.snap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ exports[`renders topbar unchanged 1`] = `
484484
<p
485485
class="font-bold"
486486
>
487-
Run time(s)
487+
Run time
488488
:
489489
</p>
490490
@@ -540,7 +540,7 @@ exports[`renders topbar unchanged 1`] = `
540540
<p
541541
class="font-bold"
542542
>
543-
Period Run Time(s)
543+
Period Run Time
544544
:
545545
</p>
546546

0 commit comments

Comments
 (0)