File tree Expand file tree Collapse file tree 12 files changed +15
-8
lines changed Expand file tree Collapse file tree 12 files changed +15
-8
lines changed Original file line number Diff line number Diff line change 77 Adapter ,
88 type JsonBranch ,
99 type JsonProject ,
10- ModelTest ,
10+ type ModelTest ,
1111} from "../../../../../types/bencher" ;
1212import { authUser } from "../../../../../util/auth" ;
1313import { prettyPrintFloat } from "../../../../../util/convert" ;
Original file line number Diff line number Diff line change @@ -72,7 +72,9 @@ const DeckHeader = (props: Props) => {
7272 </ div >
7373 < div class = "column" >
7474 < div class = "content has-text-centered" >
75- < h3 class = "title is-3" > { title ( ) } </ h3 >
75+ < h3 class = "title is-3" style = "word-break: break-word;" >
76+ { title ( ) }
77+ </ h3 >
7678 </ div >
7779 </ div >
7880
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ export const AlertRow = (props: { alert: JsonAlert }) => {
4646 />
4747 < DimensionLabel
4848 icon = { MODEL_TEST_ICON }
49- name = { props . alert ?. threshold ?. model ?. test ?? "No model " }
49+ name = { props . alert ?. threshold ?. model ?. test ?? "No Model " }
5050 />
5151 </ div >
5252 ) ;
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ export const ThresholdRow = (props: { threshold: JsonThreshold }) => {
2020 < DimensionLabel
2121 icon = { MODEL_TEST_ICON }
2222 name = {
23- fmtModelTest ( props . threshold ?. model ?. test as ModelTest ) ?? "No model "
23+ fmtModelTest ( props . threshold ?. model ?. test as ModelTest ) ?? "No Model "
2424 }
2525 />
2626 </ div >
Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ export const fmtModelTest = (test: ModelTest) => {
134134 case ModelTest . DeltaIqr :
135135 return "Delta Interquartile Range (ΔIQR)" ;
136136 default :
137- return "Unknown " ;
137+ return "No Model " ;
138138 }
139139} ;
140140
Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ const MembersConfig = {
5959 operation : Operation . LIST ,
6060 header : {
6161 title : < IconTitle icon = { MEMBER_ICON } title = "Members" /> ,
62+ name : "Members" ,
6263 buttons : [
6364 { kind : Button . SEARCH } ,
6465 {
Original file line number Diff line number Diff line change 11import FieldKind from "../../components/field/kind" ;
2+ import IconTitle from "../../components/site/IconTitle" ;
23import type { JsonOrganization } from "../../types/bencher" ;
34import {
45 isAllowedOrganizationDelete ,
@@ -45,7 +46,8 @@ const organizationsConfig = {
4546 [ Operation . LIST ] : {
4647 operation : Operation . LIST ,
4748 header : {
48- title : "Organizations" ,
49+ title : < IconTitle icon = { ORGANIZATION_ICON } title = "Organizations" /> ,
50+ name : "Organizations" ,
4951 buttons : [
5052 { kind : Button . SEARCH } ,
5153 {
Original file line number Diff line number Diff line change @@ -7,13 +7,13 @@ import IconTitle from "../../components/site/IconTitle";
77
88export const ALERT_ICON = "fas fa-bell" ;
99export const ALERT_OFF_ICON = "far fa-bell-slash" ;
10- export const ALERT_FALLBACK_ICON = "far fa-bell" ;
1110
1211const alertsConfig = {
1312 [ Operation . LIST ] : {
1413 operation : Operation . LIST ,
1514 header : {
1615 title : < IconTitle icon = { ALERT_ICON } title = "Alerts" /> ,
16+ name : "Alerts" ,
1717 buttons : [
1818 { kind : Button . DISMISS_ALL } ,
1919 { kind : Button . ARCHIVED } ,
Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ const projectsConfig = {
5959 operation : Operation . LIST ,
6060 header : {
6161 title : < IconTitle icon = { PROJECT_ICON } title = "Projects" /> ,
62+ name : "Projects" ,
6263 buttons : [
6364 { kind : Button . SEARCH } ,
6465 {
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ const reportsConfig = {
1111 operation : Operation . LIST ,
1212 header : {
1313 title : < IconTitle icon = { REPORT_ICON } title = "Reports" /> ,
14+ name : "Reports" ,
1415 buttons : [
1516 { kind : Button . DATE_TIME } ,
1617 { kind : Button . ARCHIVED } ,
You can’t perform that action at this time.
0 commit comments