Skip to content

Commit 98fa45f

Browse files
committed
Fixed typos
1 parent 5ab7895 commit 98fa45f

7 files changed

Lines changed: 36 additions & 29 deletions

File tree

.spelling.dic

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,77 @@
11
aceee
22
ashrae
33
atrt
4+
bedes
45
beps
56
bricr
7+
bsyncr
8+
cejst
9+
chartjs
610
comstock
711
consolas
812
dotenvx
13+
eeej
14+
eisa
15+
epsg
16+
esbuild
917
espm
1018
extrabold
1119
extralight
20+
femp
1221
fieldname
1322
fira
1423
flippable
1524
fontsource
25+
geocoder
1626
geojson
1727
ghgi
1828
goel
1929
graw
30+
greenbutton
2031
heroicons
32+
hvac
33+
iconfont
2134
importfiles
2235
importrecord
2336
jaccard
2437
jsverse
2538
kgal
39+
lmdb
2640
lokalise
2741
luxon
2842
macumber
2943
mapquest
44+
moveend
45+
msgpackr
46+
nmec
3047
noopener
3148
noreferrer
3249
nrel
3350
officedocument
3451
opblock
3552
openxmlformats
53+
overlaycontainer
54+
pvwatts
55+
registerables
3656
scrollbars
3757
scrollblock
58+
siedlerchr
3859
spreadsheetml
60+
sqft
61+
srid
3962
supriya
63+
syncr
4064
taxlot
4165
taxlots
66+
titlecase
4267
topbar
4368
transloco
4469
twotone
4570
ubid
71+
ubids
4672
unelevated
73+
unlinkable
74+
unpair
75+
unpairing
4776
unsubscription
77+
xmark

cspell.json

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -18,28 +18,5 @@
1818
"/.spelling.dic",
1919
"/pnpm-lock.yaml"
2020
],
21-
"useGitignore": true,
22-
"words": [
23-
"BEDES",
24-
"bsyncr",
25-
"CEJST",
26-
"eeej",
27-
"EPSG",
28-
"EISA",
29-
"FEMP",
30-
"falsey",
31-
"greenbutton",
32-
"moveend",
33-
"NMEC",
34-
"overlaycontainer",
35-
"pvwatts",
36-
"SRID",
37-
"Syncr",
38-
"sqft",
39-
"ubids",
40-
"unlinkable",
41-
"unpair",
42-
"Unpair",
43-
"unpairing",
44-
]
21+
"useGitignore": true
4522
}

src/@seed/components/menu/menu-item.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div
22
class="menu-option"
3-
[class.cusror-pointer]="!disabled"
3+
[class.cursor-pointer]="!disabled"
44
[class.text-secondary]="disabled"
55
[class.hover:bg-transparent]="disabled"
66
(click)="onClick()"

src/app/modules/datasets/data-mappings/step1/map-data.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
class="border-button-toggle-group"
3838
[(ngModel)]="defaultInventoryType"
3939
(change)="setAllInventoryType($event.value)"
40-
name="invntoryType"
40+
name="inventoryType"
4141
appearance="standard"
4242
>
4343
<mat-button-toggle value="Property">Properties</mat-button-toggle>

src/app/modules/datasets/data-upload/data-upload-modal.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
<mat-icon svgIcon="fa-solid:file"></mat-icon>
3838
<span class="inline-block w-40 text-left">Upload Spreadsheet</span>
3939
</button>
40-
<span class="text-secondary my-auto">.csv, .xls, .xslx</span>
40+
<span class="text-secondary my-auto">.csv, .xls, .xlsx</span>
4141
</div>
4242
<div class="text-secondary mb-2 ml-4">Note: only the first sheet of multi-sheet Excel files will be imported.</div>
4343

src/app/modules/inventory-detail/meters/meters.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ export class MetersComponent implements OnDestroy, OnInit {
176176
{ field: 'actions', headerName: 'Actions', cellRenderer: this.actionRenderer },
177177
]
178178

179-
// hide column if all values are falsey
179+
// hide column if all values are falsy
180180
const showColumn = (field: string, rowData: Record<string, unknown>[]) => rowData.some((row) => !!row[field])
181181
this.meterDefs = this.meterDefs.filter((colDef) => colDef.field === 'actions' || showColumn(colDef.field, this.meterData))
182182
}

src/app/modules/inventory-detail/sensors/data-loggers/data-loggers-grid.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export class DataLoggersGridComponent implements OnChanges {
5656
if (changes.dataLoggers) {
5757
this.gridHeight = Math.min(this.dataLoggers.length * 43 + 50, 400)
5858

59-
// hide column if all values are falsey
59+
// hide column if all values are falsy
6060
const constantCols = new Set(['id', 'display_name', 'location_description', 'actions'])
6161
const showColumn = (field: string, rowData: Record<string, unknown>[]) => rowData.some((row) => !!row[field])
6262
this.columnDefs = this.columnDefs.filter((colDef) => constantCols.has(colDef.field) || showColumn(colDef.field, this.dataLoggers))

0 commit comments

Comments
 (0)