File tree Expand file tree Collapse file tree
src/ui/components/widgets Expand file tree Collapse file tree Original file line number Diff line number Diff line change 145145 "deploy" : " npm run pkg && npm run notarize && npm run upload" ,
146146 "prepublishOnly" : " npm run build"
147147 },
148- "version" : " 1.1.0-beta.3 " ,
148+ "version" : " 1.1.0-beta.4 " ,
149149 "bugs" : " https://github.com/codifycli/codify/issues" ,
150150 "keywords" : [
151151 " oclif" ,
Original file line number Diff line number Diff line change 1+ import { ResourceOperation } from '@codifycli/schemas' ;
12import { Box , Text } from 'ink' ;
23import React from 'react' ;
34
@@ -79,12 +80,14 @@ export function ApplyComplete({ result }: { result: ApplyResult }) {
7980
8081 { result . entries . length > 0 && (
8182 < Box flexDirection = "column" marginTop = { 1 } >
82- { result . entries . map ( ( entry ) => (
83- < Box key = { entry . id } >
84- < Text dimColor = { entry . status === 'skipped' } > { entry . id . padEnd ( 30 ) } </ Text >
85- < Text color = { applyEntryInkColor ( entry ) } > { applyEntryLabel ( entry ) } </ Text >
86- </ Box >
87- ) ) }
83+ { result . entries
84+ . filter ( ( e ) => ! ( e . status === 'success' && e . operation === ResourceOperation . NOOP ) )
85+ . map ( ( entry ) => (
86+ < Box key = { entry . id } >
87+ < Text dimColor = { entry . status === 'skipped' } > { entry . id . padEnd ( 30 ) } </ Text >
88+ < Text color = { applyEntryInkColor ( entry ) } > { applyEntryLabel ( entry ) } </ Text >
89+ </ Box >
90+ ) ) }
8891 </ Box >
8992 ) }
9093
You can’t perform that action at this time.
0 commit comments