mirror of
https://github.com/Joxit/docker-registry-ui.git
synced 2025-04-26 23:19:54 +03:00
parent
a19c992d5a
commit
b97ee4bc60
3 changed files with 4 additions and 3 deletions
2
dist/docker-registry-ui.js
vendored
2
dist/docker-registry-ui.js
vendored
File diff suppressed because one or more lines are too long
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "docker-registry-ui",
|
"name": "docker-registry-ui",
|
||||||
"version": "2.0.2",
|
"version": "2.0.3",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "ROLLUP_SERVE=true rollup -c -w",
|
"start": "ROLLUP_SERVE=true rollup -c -w",
|
||||||
"build": "rollup -c",
|
"build": "rollup -c",
|
||||||
|
|
|
@ -143,7 +143,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
onRemoveImageHeaderChange(checked, event) {
|
onRemoveImageHeaderChange(checked, event) {
|
||||||
if (event.altKey === true) {
|
if (event.altKey === true) {
|
||||||
const tags = getPage(this.props.tags, this.props.page);
|
const tags = getPage(this.props.tags, this.props.page);
|
||||||
tags.forEach(tag => this.state.toDelete.add(tag));
|
tags.filter(image => matchSearch(this.props.filterResults, image.tag))
|
||||||
|
.forEach(tag => this.state.toDelete.add(tag));
|
||||||
this.update({
|
this.update({
|
||||||
multiDelete: true,
|
multiDelete: true,
|
||||||
toDelete: this.state.toDelete
|
toDelete: this.state.toDelete
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue