Skip to content

Commit 96c58d4

Browse files
committed
fix(7segment): make pinPositions getter private
1 parent 21de1f3 commit 96c58d4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/7segment-element.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ export class SevenSegmentElement extends LitElement {
111111
`;
112112
}
113113

114-
get pinPositions() {
114+
private get pinPositions() {
115115
const { digits } = this;
116116
const numPins = digits === 4 ? 14 : 10;
117117
const cols = Math.ceil(numPins / 2);

0 commit comments

Comments
 (0)