Skip to content

Commit deda36a

Browse files
dvaldiviabexsoft
andauthored
Fix Add Buckets button on Object Browser (#970)
* Fix Add Buckets button on Object Browser Signed-off-by: Daniel Valdivia <[email protected]> * Comments Signed-off-by: Daniel Valdivia <[email protected]> Co-authored-by: Alex <[email protected]>
1 parent d32ab25 commit deda36a

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

portal-ui/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"@types/react-router-dom": "^5.1.2",
2424
"@types/react-virtualized": "^9.21.10",
2525
"@types/recharts": "^1.8.19",
26-
"@types/superagent": "^4.1.4",
26+
"@types/superagent": "^4.1.12",
2727
"@types/webpack-env": "^1.14.1",
2828
"@types/websocket": "^1.0.0",
2929
"ansi-to-react": "^6.0.5",
@@ -52,7 +52,7 @@
5252
"recharts": "^2.0.3",
5353
"redux": "^4.0.5",
5454
"redux-thunk": "^2.3.0",
55-
"superagent": "^5.1.0",
55+
"superagent": "^6.1.0",
5656
"typeface-roboto": "^0.0.75",
5757
"use-debounce": "^5.0.1",
5858
"websocket": "^1.0.31"

portal-ui/src/screens/Console/Buckets/ListBuckets/ListBuckets.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ const ListBuckets = ({
255255
<Grid item xs={12} className={classes.container}>
256256
<Grid item xs={12} className={classes.actionsTray}>
257257
<TextField
258-
placeholder="Search Buckets"
258+
placeholder="Filter Buckets"
259259
className={classes.searchField}
260260
id="search-resource"
261261
label=""

portal-ui/src/screens/Console/ObjectBrowser/BrowseBuckets.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -235,10 +235,10 @@ const BrowseBuckets = ({
235235
<Tooltip title={"Create Bucket"}>
236236
<IconButton
237237
color="primary"
238-
aria-label="Refresh List"
238+
aria-label="Create Bucket"
239239
component="span"
240240
onClick={() => {
241-
setLoading(true);
241+
setAddScreenOpen(true);
242242
}}
243243
>
244244
<CreateIcon />
@@ -264,7 +264,7 @@ const BrowseBuckets = ({
264264
</Grid>
265265
<Grid item xs={12} className={classes.actionsTray}>
266266
<TextField
267-
placeholder="Search Buckets"
267+
placeholder="Filter Buckets"
268268
className={classes.searchField}
269269
id="search-resource"
270270
label=""

portal-ui/yarn.lock

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2112,10 +2112,10 @@
21122112
dependencies:
21132113
"@types/react" "*"
21142114

2115-
"@types/superagent@^4.1.4":
2116-
version "4.1.11"
2117-
resolved "https://registry.yarnpkg.com/@types/superagent/-/superagent-4.1.11.tgz#4822bc64a82a0f579261a77097dbca276556c20e"
2118-
integrity sha512-cZkWBXZI+jESnUTp8RDGBmk1Zn2MkScP4V5bjD7DyqB7L0WNWpblh4KX5K/6aTqxFZMhfo1bhi2cwoAEDVBBJw==
2115+
"@types/superagent@^4.1.12":
2116+
version "4.1.12"
2117+
resolved "https://registry.yarnpkg.com/@types/superagent/-/superagent-4.1.12.tgz#fad68c6712936892ad24cf94f2f7a07cc749fd0f"
2118+
integrity sha512-1GQvD6sySQPD6p9EopDFI3f5OogdICl1sU/2ij3Esobz/RtL9fWZZDPmsuv7eiy5ya+XNiPAxUcI3HIUTJa+3A==
21192119
dependencies:
21202120
"@types/cookiejar" "*"
21212121
"@types/node" "*"
@@ -11072,10 +11072,10 @@ stylehacks@^4.0.0:
1107211072
postcss "^7.0.0"
1107311073
postcss-selector-parser "^3.0.0"
1107411074

11075-
superagent@^5.1.0:
11076-
version "5.3.1"
11077-
resolved "https://registry.yarnpkg.com/superagent/-/superagent-5.3.1.tgz#d62f3234d76b8138c1320e90fa83dc1850ccabf1"
11078-
integrity sha512-wjJ/MoTid2/RuGCOFtlacyGNxN9QLMgcpYLDQlWFIhhdJ93kNscFonGvrpAHSCVjRVj++DGCglocF7Aej1KHvQ==
11075+
superagent@^6.1.0:
11076+
version "6.1.0"
11077+
resolved "https://registry.yarnpkg.com/superagent/-/superagent-6.1.0.tgz#09f08807bc41108ef164cfb4be293cebd480f4a6"
11078+
integrity sha512-OUDHEssirmplo3F+1HWKUrUjvnQuA+nZI6i/JJBdXb5eq9IyEQwPyPpqND+SSsxf6TygpBEkUjISVRN4/VOpeg==
1107911079
dependencies:
1108011080
component-emitter "^1.3.0"
1108111081
cookiejar "^2.1.2"

0 commit comments

Comments
 (0)