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" ;
1
2
function Authentication ( validUsers , useEncryptedPasswords ) {
2
3
this . validUsers = validUsers ;
3
4
this . useEncryptedPasswords = useEncryptedPasswords || false ;
@@ -21,13 +22,13 @@ Authentication.prototype.authenticate = function (userToTest) {
21
22
appsUserHasAccessTo = user . apps || null ;
22
23
}
23
24
24
- return isAuthenticated
25
+ return isAuthenticated ;
25
26
} ) ? true : false ;
26
27
27
28
return {
28
29
isAuthenticated,
29
30
appsUserHasAccessTo
30
- }
31
- }
31
+ } ;
32
+ } ;
32
33
33
34
module . exports = Authentication ;
Original file line number Diff line number Diff line change @@ -128,6 +128,11 @@ let BrowserToolbar = ({
128
128
subsection = { subsection }
129
129
details = { details . join ( ' \u2022 ' ) }
130
130
>
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 } />
131
136
< a className = { styles . toolbarButton } onClick = { onRefresh } >
132
137
< Icon name = 'refresh-solid' width = { 14 } height = { 14 } />
133
138
< span > Refresh</ span >
You can’t perform that action at this time.
0 commit comments