File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
pages/Dashboard/Content/SandboxCard Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -136,8 +136,8 @@ class SandboxItem extends React.PureComponent<Props> {
136136 {
137137 title :
138138 selectedCount > 1
139- ? `Move ${ selectedCount } Sandboxes To 'My Sandboxes' `
140- : "Move Sandbox To 'My Sandboxes'" ,
139+ ? `Recover ${ selectedCount } Sandboxes`
140+ : 'Recover Sandbox' ,
141141 action : ( ) => {
142142 this . props . undeleteSandboxes ( ) ;
143143 return true ;
Original file line number Diff line number Diff line change 1+ import track from 'common/utils/analytics' ;
2+
13export function saveAllModules ( store , signals ) {
24 const sandbox = store . editor . currentSandbox ;
35
46 // In case you don't own the sandbox we cannot do >1 calls for saving module as you would then
57 // also fork >1 times. The reason that we want to save seperately is because we want to have
68 // fine-grained control of which saves succeed and which saves fail
79 if ( sandbox . owned ) {
10+ track ( 'Save All Modified Modules' ) ;
811 sandbox . modules
912 . filter ( m => ! store . editor . isModuleSynced ( m . shortid ) )
1013 . forEach ( module => {
You can’t perform that action at this time.
0 commit comments