Fix min value in editor (#4236)

This commit is contained in:
Bram Kragten 2019-11-19 00:28:08 +01:00 committed by GitHub
parent b4942ad27e
commit 3697500402
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -64,7 +64,7 @@ export class HuiGaugeCardEditor extends LitElement
}
get _min(): number {
return this._config!.number || 0;
return this._config!.min || 0;
}
get _max(): number {