mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-01-10 01:19:45 +08:00
Merge pull request #5027 from sboursen-scinote/sb_SCI-7991
Versions button is not connected to the actions toolbar [SCI-7991]
This commit is contained in:
commit
68cb18133f
1 changed files with 4 additions and 1 deletions
|
@ -23,7 +23,6 @@ var ProtocolsIndex = (function() {
|
|||
var archivedOnToFilter;
|
||||
var protocolsViewSearch;
|
||||
|
||||
|
||||
/**
|
||||
* Initializes page
|
||||
*/
|
||||
|
@ -419,6 +418,10 @@ var ProtocolsIndex = (function() {
|
|||
e.stopPropagation();
|
||||
e.preventDefault();
|
||||
});
|
||||
|
||||
$(protocolsContainer).on('click', '#protocolVersions', function() {
|
||||
$(`tr[data-row-id=${rowsSelected[0]}] .protocol-versions-link`).click();
|
||||
});
|
||||
}
|
||||
|
||||
function initdeleteDraftModal() {
|
||||
|
|
Loading…
Reference in a new issue