mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-06-21 01:25:55 +02:00
8 lines
232 B
JavaScript
8 lines
232 B
JavaScript
|
import { Controller } from '@hotwired/stimulus';
|
||
|
|
||
|
export default class extends Controller {
|
||
|
connect() {
|
||
|
const menu = document.getElementById('locale-select-menu');
|
||
|
menu.innerHTML = this.element.innerHTML;
|
||
|
}
|
||
|
}
|