File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments