Skip to content

Commit 39740e2

Browse files
authored
chore: setup with pnpm (#2536)
1 parent 6de693f commit 39740e2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,4 @@ Dockerfile
3030
robotMsg.json
3131
package-lock.json
3232
.gitlogmap
33+
pnpm-lock.yaml

src/upload/themes/multiple-flow-list.tsx

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { CreateElement } from 'vue';
22
import {
33
computed, defineComponent, toRefs, PropType,
44
} from '@vue/composition-api';
5-
import classNames from 'classnames';
65
import {
76
BrowseIcon as TdBrowseIcon,
87
DeleteIcon as TdDeleteIcon,
@@ -123,10 +122,10 @@ export default defineComponent({
123122
return (
124123
<li class={`${this.uploadPrefix}__card-item`} key={file.name + index + file.percent + file.status}>
125124
<div
126-
class={classNames([
125+
class={[
127126
`${this.uploadPrefix}__card-content`,
128127
{ [`${this.classPrefix}-is-bordered`]: file.status !== 'waiting' },
129-
])}
128+
]}
130129
>
131130
{['fail', 'progress'].includes(file.status) && (
132131
<div class={`${this.uploadPrefix}__card-status-wrap ${this.uploadPrefix}__${this.theme}-${file.status}`}>

0 commit comments

Comments
 (0)