File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -67,18 +67,18 @@ const SummaryStyle = () => {
6767 description = "Decide how the time summary of past dates is displayed — as table rows or in grid items?"
6868 >
6969 < OrChain role = "radiogroup" onKeyDown = { styleRadioButtonFocusManager } >
70- < StyleRadioButton
71- active = { summaryStyle === "grid" }
72- icon = { LayoutGrid }
73- label = "Grid"
74- onClick = { ( ) => preferencesData . actions . setSummaryStye ( "grid" ) }
75- />
7670 < StyleRadioButton
7771 active = { summaryStyle === "table" }
7872 icon = { TableProperties }
7973 label = "Table"
8074 onClick = { ( ) => preferencesData . actions . setSummaryStye ( "table" ) }
8175 />
76+ < StyleRadioButton
77+ active = { summaryStyle === "grid" }
78+ icon = { LayoutGrid }
79+ label = "Grid"
80+ onClick = { ( ) => preferencesData . actions . setSummaryStye ( "grid" ) }
81+ />
8282 </ OrChain >
8383 </ Card >
8484 )
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ type Preferences = Resolve<z.infer<typeof preferencesSchema>>
1111
1212const defaultValue : Preferences = {
1313 locale : "iso" ,
14- summaryStyle : "grid " ,
14+ summaryStyle : "table " ,
1515}
1616
1717export const preferencesData = createSlice ( {
You can’t perform that action at this time.
0 commit comments