Merge remote-tracking branch 'origin/main' into feature/home_page_redesign
This commit is contained in:
commit
9b27f5d75c
|
@ -53,6 +53,7 @@ class ProcessModelInfo:
|
|||
|
||||
# for use with os.path.join so it can work on windows
|
||||
def id_for_file_path(self) -> str:
|
||||
"""Id_for_file_path."""
|
||||
return self.id.replace("/", os.sep)
|
||||
|
||||
|
||||
|
|
|
@ -58,7 +58,9 @@ export default function ProcessGroupShow() {
|
|||
return null;
|
||||
}
|
||||
const rows = processModels.map((row: ProcessModel) => {
|
||||
const modifiedProcessModelId: String = modifyProcessModelPath((row as any).id);
|
||||
const modifiedProcessModelId: String = modifyProcessModelPath(
|
||||
(row as any).id
|
||||
);
|
||||
return (
|
||||
<tr key={row.id}>
|
||||
<td>
|
||||
|
|
Loading…
Reference in New Issue