We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c3d3f8 commit 4b4655cCopy full SHA for 4b4655c
client/src/components/NodeProperties.js
@@ -69,7 +69,7 @@ export default function NodeProperties(props) {
69
{Object.keys(facets).map(k => (
70
<tr key={k}>
71
<td>{k}</td>
72
- <td>{attrs[k]}</td>
+ <td>{facets[k]}</td>
73
</tr>
74
))}
75
</tbody>
scripts/functions.sh
@@ -75,6 +75,6 @@ function buildServer {
function uploadToS3 {
76
echo
77
echo "=> Uploading client static files to AWS S3..."
78
- aws s3 cp --recursive ./client/build/static s3://dgraph-io-ratel/dev/static
+ aws s3 cp --recursive ./client/build/static s3://dgraph-io-ratel/static
79
aws cloudfront create-invalidation --distribution-id EJF7H0N2C94FP --paths "/*"
80
}
0 commit comments