mirror of
https://github.com/thelounge/thelounge
synced 2025-02-16 13:18:24 +00:00
Only toggle mentions popup if connected to network
The top bar is only shown if the user is connected to at least one network. Only then it is possible to open the recent mentions popup. Only toggle the recent mentions popup if the user is connected to at least one network so the popup will not open over the connect view.
This commit is contained in:
parent
a93ccd680f
commit
243f514243
1 changed files with 3 additions and 1 deletions
|
@ -101,7 +101,9 @@ export default {
|
|||
return false;
|
||||
},
|
||||
toggleMentions() {
|
||||
eventbus.emit("mentions:toggle");
|
||||
if (this.$store.state.networks.length !== 0) {
|
||||
eventbus.emit("mentions:toggle");
|
||||
}
|
||||
},
|
||||
msUntilNextDay() {
|
||||
// Compute how many milliseconds are remaining until the next day starts
|
||||
|
|
Loading…
Add table
Reference in a new issue