@@ -377,24 +377,24 @@ export default defineComponent({
377377 this .initialData .checkNoNewAccessFilePath = data
378378 client
379379 .readCustomChecksFile (this .initialData .checkNoNewAccessFilePath )
380- .then (( response ) => {
380+ .then (response => {
381381 this .initialData .checkNoNewAccessTextArea = response
382382 })
383- .catch (( err ) => console .log (err ))
383+ .catch (err => console .log (err ))
384384 })
385385 client .onChangeCheckAccessNotGrantedFilePath ((data : string ) => {
386386 this .initialData .checkAccessNotGrantedFilePath = data
387387 client
388388 .readCustomChecksJsonFile (this .initialData .checkAccessNotGrantedFilePath )
389- .then (( response ) => {
389+ .then (response => {
390390 this .initialData .checkAccessNotGrantedActionsTextArea = response .actions
391391 ? response .actions .toString ()
392392 : ' '
393393 this .initialData .checkAccessNotGrantedResourcesTextArea = response .resources
394394 ? response .resources .toString ()
395395 : ' '
396396 })
397- .catch (( err ) => console .log (err ))
397+ .catch (err => console .log (err ))
398398 })
399399 client .onChangeCloudformationParameterFilePath ((data : string ) => {
400400 this .initialData .cfnParameterPath = data
@@ -433,10 +433,10 @@ export default defineComponent({
433433 this .initialData .checkNoNewAccessFilePath = event .target .value
434434 client
435435 .readCustomChecksFile (this .initialData .checkNoNewAccessFilePath )
436- .then (( response ) => {
436+ .then (response => {
437437 this .initialData .checkNoNewAccessTextArea = response
438438 })
439- .catch (( err ) => console .log (err ))
439+ .catch (err => console .log (err ))
440440 },
441441 setCheckNoNewAccessTextArea : function (event : any ) {
442442 this .initialData .checkNoNewAccessTextArea = event .target .value
@@ -447,15 +447,15 @@ export default defineComponent({
447447 this .initialData .checkAccessNotGrantedFilePath = event .target .value
448448 client
449449 .readCustomChecksJsonFile (this .initialData .checkAccessNotGrantedFilePath )
450- .then (( response ) => {
450+ .then (response => {
451451 this .initialData .checkAccessNotGrantedActionsTextArea = response .actions
452452 ? response .actions .toString ()
453453 : ' '
454454 this .initialData .checkAccessNotGrantedResourcesTextArea = response .resources
455455 ? response .resources .toString ()
456456 : ' '
457457 })
458- .catch (( err ) => console .log (err ))
458+ .catch (err => console .log (err ))
459459 },
460460 setcheckAccessNotGrantedActionsTextArea : function (event : any ) {
461461 this .initialData .checkAccessNotGrantedActionsTextArea = event .target .value
0 commit comments