Skip to content

Commit 775e700

Browse files
committed
remove method arguments
1 parent 5b7ad30 commit 775e700

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/uui-pagination/lib/uui-pagination.element.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -132,30 +132,30 @@ export class UUIPaginationElement extends LitElement {
132132
* @attr
133133
*/
134134
@property()
135-
firstLabel: string | (() => string) = 'First';
135+
firstLabel: string = 'First';
136136

137137
/**
138138
* This property is used to generate the name of the previous button
139139
* @type {string}
140140
* @attr
141141
*/
142142
@property()
143-
previousLabel: string | (() => string) = 'Previous';
143+
previousLabel: string = 'Previous';
144144

145145
/**
146146
* This property is used to generate the name of the next button
147147
* @type {string}
148148
* @attr
149149
*/
150150
@property()
151-
nextLabel: string | (() => string) = 'Next';
151+
nextLabel: string = 'Next';
152152
/**
153153
* This property is used to generate the name of the last button
154154
* @type {string}
155155
* @attr
156156
*/
157157
@property()
158-
lastLabel: string | (() => string) = 'Last';
158+
lastLabel: string = 'Last';
159159

160160
private _total = 100;
161161

0 commit comments

Comments
 (0)