[DE PE SSE] Fix bug 50766
This commit is contained in:
parent
c0c4766574
commit
77773d2c40
|
@ -76,7 +76,7 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeReview')(prop
|
||||||
{
|
{
|
||||||
text: _t.leaveButtonText,
|
text: _t.leaveButtonText,
|
||||||
onClick: function() {
|
onClick: function() {
|
||||||
goBack();
|
goBack(true);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -86,7 +86,7 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeReview')(prop
|
||||||
]
|
]
|
||||||
}).open();
|
}).open();
|
||||||
} else {
|
} else {
|
||||||
goBack();
|
goBack(true);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
const goBack = (current) => {
|
const goBack = (current) => {
|
||||||
|
|
|
@ -75,7 +75,7 @@ const ToolbarController = inject('storeAppOptions', 'users')(props => {
|
||||||
{
|
{
|
||||||
text: _t.leaveButtonText,
|
text: _t.leaveButtonText,
|
||||||
onClick: function() {
|
onClick: function() {
|
||||||
goBack();
|
goBack(true);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -85,7 +85,7 @@ const ToolbarController = inject('storeAppOptions', 'users')(props => {
|
||||||
]
|
]
|
||||||
}).open();
|
}).open();
|
||||||
} else {
|
} else {
|
||||||
goBack();
|
goBack(true);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
const goBack = (current) => {
|
const goBack = (current) => {
|
||||||
|
|
|
@ -76,7 +76,7 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeSpreadsheetIn
|
||||||
{
|
{
|
||||||
text: _t.leaveButtonText,
|
text: _t.leaveButtonText,
|
||||||
onClick: function() {
|
onClick: function() {
|
||||||
goBack();
|
goBack(true);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -86,7 +86,7 @@ const ToolbarController = inject('storeAppOptions', 'users', 'storeSpreadsheetIn
|
||||||
]
|
]
|
||||||
}).open();
|
}).open();
|
||||||
} else {
|
} else {
|
||||||
goBack();
|
goBack(true);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
const goBack = (current) => {
|
const goBack = (current) => {
|
||||||
|
|
Loading…
Reference in a new issue