Skip to content

Commit

Permalink
Make changes from code review
Browse files Browse the repository at this point in the history
  • Loading branch information
adjl committed Mar 25, 2022
1 parent 79d34c1 commit 8bbad37
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ class FolderService extends ContainerService<Folder> {
(folder as GormEntity).save(saveArgs)
sessionFactory.currentSession.flush()
} else {
(folder as GormEntity).save(saveArgs)
(folder as GormEntity).save(args)
}
folder
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ import groovy.transform.CompileStatic
class FolderImporterProviderServiceParameters implements ImporterProviderServiceParameters {
@ImportParameterConfig(
displayName = 'Parent Folder',
description = 'The parent folder into which the Model/s should be imported.',
description = 'The parent Folder into which the Folder should be imported.',
order = 0,
group = @ImportGroupConfig(
name = 'Model',
name = 'Folder',
order = 0
))
UUID parentFolderId
Expand Down

0 comments on commit 8bbad37

Please sign in to comment.