diff --git a/src/frontend/devops-repository/src/components/FilePreview/filePreview.vue b/src/frontend/devops-repository/src/components/FilePreview/filePreview.vue index c05062cbb9..e50c93d7e2 100644 --- a/src/frontend/devops-repository/src/components/FilePreview/filePreview.vue +++ b/src/frontend/devops-repository/src/components/FilePreview/filePreview.vue @@ -103,6 +103,7 @@ || this.filePath.endsWith('bat') || this.filePath.endsWith('json') || this.filePath.endsWith('yaml') + || this.filePath.endsWith('yml') || this.filePath.endsWith('xml') || this.filePath.endsWith('log') || this.filePath.endsWith('ini') diff --git a/src/frontend/devops-repository/src/views/repoGeneric/index.vue b/src/frontend/devops-repository/src/views/repoGeneric/index.vue index e1c9444eab..0e9ddc79f9 100644 --- a/src/frontend/devops-repository/src/views/repoGeneric/index.vue +++ b/src/frontend/devops-repository/src/views/repoGeneric/index.vue @@ -811,6 +811,7 @@ || row.fullPath.endsWith('bat') || row.fullPath.endsWith('json') || row.fullPath.endsWith('yaml') + || row.fullPath.endsWith('yml') || row.fullPath.endsWith('xml') || row.fullPath.endsWith('log') || row.fullPath.endsWith('ini') @@ -1419,6 +1420,7 @@ || name.endsWith('bat') || name.endsWith('json') || name.endsWith('yaml') + || name.endsWith('yml') || name.endsWith('xml') || name.endsWith('log') || name.endsWith('ini')