mirror of https://github.com/portainer/portainer
fix(swarm): auto multi-select volume with same name [EE-7240] (#11955)
parent
4d586f7a85
commit
bedb7fb255
|
@ -5,7 +5,9 @@ import { IResource } from '@/react/docker/components/datatable/createOwnershipCo
|
|||
import { PortainerResponse } from '@/react/docker/types';
|
||||
|
||||
export class VolumeViewModel implements IResource {
|
||||
Id: Volume['Name'];
|
||||
Id: string;
|
||||
|
||||
Name: Volume['Name'];
|
||||
|
||||
CreatedAt?: Volume['CreatedAt'];
|
||||
|
||||
|
@ -28,7 +30,7 @@ export class VolumeViewModel implements IResource {
|
|||
ResourceControl?: ResourceControlViewModel;
|
||||
|
||||
constructor(data: PortainerResponse<Volume> & { ResourceID?: string }) {
|
||||
this.Id = data.Name;
|
||||
this.Name = data.Name;
|
||||
this.CreatedAt = data.CreatedAt;
|
||||
this.Driver = data.Driver;
|
||||
this.Options = data.Options;
|
||||
|
@ -52,5 +54,10 @@ export class VolumeViewModel implements IResource {
|
|||
this.NodeName = data.Portainer.Agent.NodeName;
|
||||
}
|
||||
}
|
||||
|
||||
this.Id = data.Name;
|
||||
if (this.NodeName) {
|
||||
this.Id = `${data.Name}-${this.NodeName}`;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -13,9 +13,9 @@ angular.module('portainer.docker').controller('VolumesController', [
|
|||
function ($q, $scope, $state, VolumeService, ServiceService, VolumeHelper, Notifications, Authentication, endpoint) {
|
||||
$scope.removeAction = async function (selectedItems) {
|
||||
async function doRemove(volume) {
|
||||
return VolumeService.remove(volume.Id, volume.NodeName)
|
||||
return VolumeService.remove(volume.Name, volume.NodeName)
|
||||
.then(function success() {
|
||||
Notifications.success('Volume successfully removed', volume.Id);
|
||||
Notifications.success('Volume successfully removed', volume.Name);
|
||||
var index = $scope.volumes.indexOf(volume);
|
||||
$scope.volumes.splice(index, 1);
|
||||
})
|
||||
|
|
|
@ -15,7 +15,7 @@ import { getTableMeta } from '../tableMeta';
|
|||
|
||||
import { columnHelper } from './helper';
|
||||
|
||||
export const name = columnHelper.accessor('Id', {
|
||||
export const name = columnHelper.accessor('Name', {
|
||||
id: 'name',
|
||||
header: 'Name',
|
||||
cell: Cell,
|
||||
|
|
Loading…
Reference in New Issue