Fix pin templates class names

This commit is contained in:
barsdeveloper
2023-01-03 22:57:39 +01:00
parent a16481194c
commit cef7fb1455
6 changed files with 17 additions and 17 deletions

View File

@@ -1,10 +1,10 @@
import { html } from "lit"
import IntInputPinTemplate from "./IntPinTemplate"
import IntPinTemplate from "./IntPinTemplate"
import INumericInputPinTemplate from "./INumericInputPinTemplate"
/** @typedef {import("../../entity/IntegerEntity").default} IntegerEntity */
export default class Int64InputPinTemplate extends IntInputPinTemplate {
export default class Int64PinTemplate extends IntPinTemplate {
/** @param {String[]} values */
setInputs(values = [], updateDefaultValue = false) {