feat: initalize socket listen for listSelector

This commit is contained in:
karishmas6
2024-09-03 10:08:14 +05:30
parent c888f636b4
commit 8ee5d62157

View File

@@ -106,6 +106,9 @@ export class WorkflowGenerator {
this.socket.on('setGetList', (data: { getList: boolean }) => {
this.getList = data.getList;
});
this.socket.on('listSelector', (data: { selector: string }) => {
this.listSelector = data.selector;
})
}
/**