Skip to content

Commit d2912d3

Browse files
authored
Merge pull request alibaba#160 from alibaba/chore/stale
Chore/stale
2 parents 60edcb9 + 8e7bb9d commit d2912d3

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.github/workflows/stale.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,7 @@ jobs:
1616
days-before-issue-stale: 10
1717
days-before-issue-close: 2
1818
days-before-pr-stale: 10
19-
days-before-pr-close: 2
19+
days-before-pr-close: 2
20+
exempt-issue-labels: 'bug,enhancement,good first issue,help wanted,WIP'
21+
stale-issue-label: 'stale'
22+
stale-pr-label: 'stale'

packages/designer/src/builtin-simulator/bem-tools/border-selecting.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ class Toolbar extends Component<{ observed: OffsetObserver }> {
9898
const { node } = observed;
9999
const actions: ReactNodeArray = [];
100100
node.componentMeta.availableActions.forEach((action) => {
101-
const { important, condition, content, name } = action;
101+
const { important = true, condition, content, name } = action;
102102
if (node.isSlot() && (name === 'copy' || name === 'remove')) {
103103
// FIXME: need this?
104104
return;
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
import { isFormEvent, compatibleLegaoSchema, getNodeSchemaById } from '@alilc/lowcode-utils';
22
import { isNodeSchema } from '@alilc/lowcode-types';
3+
import { getConvertedExtraKey, getOriginalExtraKey } from '@alilc/lowcode-designer';
34

45
const utils = {
56
isNodeSchema,
67
isFormEvent,
78
compatibleLegaoSchema,
89
getNodeSchemaById,
10+
getConvertedExtraKey,
11+
getOriginalExtraKey,
912
};
1013

1114
export default utils;

0 commit comments

Comments
 (0)