File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
src/dashboard/Data/Browser Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 1+ "use strict" ;
12function Authentication ( validUsers , useEncryptedPasswords ) {
23 this . validUsers = validUsers ;
34 this . useEncryptedPasswords = useEncryptedPasswords || false ;
@@ -21,13 +22,13 @@ Authentication.prototype.authenticate = function (userToTest) {
2122 appsUserHasAccessTo = user . apps || null ;
2223 }
2324
24- return isAuthenticated
25+ return isAuthenticated ;
2526 } ) ? true : false ;
2627
2728 return {
2829 isAuthenticated,
2930 appsUserHasAccessTo
30- }
31- }
31+ } ;
32+ } ;
3233
3334module . exports = Authentication ;
Original file line number Diff line number Diff line change @@ -128,6 +128,11 @@ let BrowserToolbar = ({
128128 subsection = { subsection }
129129 details = { details . join ( ' \u2022 ' ) }
130130 >
131+ < a className = { styles . toolbarButton } onClick = { onAddRow } >
132+ < Icon name = 'plus-solid' width = { 14 } height = { 14 } />
133+ < span > Add Row</ span >
134+ </ a >
135+ < div className = { styles . toolbarSeparator } />
131136 < a className = { styles . toolbarButton } onClick = { onRefresh } >
132137 < Icon name = 'refresh-solid' width = { 14 } height = { 14 } />
133138 < span > Refresh</ span >
You can’t perform that action at this time.
0 commit comments