@things-factory/board-ui 7.0.1-rc.0 → 7.0.1-rc.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client/viewparts/group-info-basic.ts +1 -1
- package/client/viewparts/play-group-info-basic.ts +1 -1
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-client/viewparts/group-info-basic.js +1 -1
- package/dist-client/viewparts/group-info-basic.js.map +1 -1
- package/dist-client/viewparts/play-group-info-basic.js +1 -1
- package/dist-client/viewparts/play-group-info-basic.js.map +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
|
@@ -214,7 +214,7 @@ export class GroupInfo extends LitElement {
|
|
|
214
214
|
|
|
215
215
|
firstUpdated() {
|
|
216
216
|
setTimeout(() => {
|
|
217
|
-
;(this.renderRoot.querySelector('
|
|
217
|
+
;(this.renderRoot.querySelector('[type=text]') as any).focus()
|
|
218
218
|
}, 100)
|
|
219
219
|
}
|
|
220
220
|
|
|
@@ -206,7 +206,7 @@ export class PlayGroupInfoBasic extends LitElement {
|
|
|
206
206
|
|
|
207
207
|
firstUpdated() {
|
|
208
208
|
setTimeout(() => {
|
|
209
|
-
;(this.renderRoot.querySelector('
|
|
209
|
+
;(this.renderRoot.querySelector('[type=text]') as any).focus()
|
|
210
210
|
}, 100)
|
|
211
211
|
}
|
|
212
212
|
|