diff options
author | srichman333 <sarah_n_richman@brown.edu> | 2023-02-20 02:01:00 -0500 |
---|---|---|
committer | srichman333 <sarah_n_richman@brown.edu> | 2023-02-20 02:01:00 -0500 |
commit | 560d1d972b3dedb03f8af117f38b8bd836e9eccb (patch) | |
tree | 244088adf1787f613b81919592f19d51229e2d5c | |
parent | 6b1cbe4130c9090042378dcf81e0eabca9badfd8 (diff) |
view all and snap lines button icons
-rw-r--r-- | package-lock.json | 6 | ||||
-rw-r--r-- | src/client/views/PropertiesButtons.tsx | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/package-lock.json b/package-lock.json index d1ee7f9e3..c0c4e362d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -4998,9 +4998,9 @@ } }, "core-js": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-1.2.7.tgz", - "integrity": "sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY=" + "version": "3.28.0", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.28.0.tgz", + "integrity": "sha512-GiZn9D4Z/rSYvTeg1ljAIsEqFm0LaN9gVtwDCrKL80zHtS31p9BAjmTxVqTQDMpwlMolJZOFntUG2uwyj7DAqw==" }, "core-js-pure": { "version": "3.28.0", diff --git a/src/client/views/PropertiesButtons.tsx b/src/client/views/PropertiesButtons.tsx index 65a950711..9bb21a662 100644 --- a/src/client/views/PropertiesButtons.tsx +++ b/src/client/views/PropertiesButtons.tsx @@ -114,7 +114,7 @@ export class PropertiesButtons extends React.Component<{}, {}> { 'View All', '_fitContentsToBox', on => `${on ? "Don't" : 'Do'} fit content to container visible area`, - on => 'eye' + on => 'object-group' ); } // this implments a container pattern by marking the targetDoc (collection) as an inPlace container, @@ -242,7 +242,7 @@ export class PropertiesButtons extends React.Component<{}, {}> { 'Snap\xA0Lines', 'showSnapLines', on => `Display snapping lines when objects are dragged`, - on => 'border-all', + on => 'th', undefined, true ); |