Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
marstamm committed Dec 12, 2024
1 parent 23aee29 commit bc92a31
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
8 changes: 8 additions & 0 deletions client/src/app/tabs/rpa/RPAEditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ export class RPAEditor extends CachedComponent {
super(props);

console.log('props', props);

console.log('config', props.getConfig('rpa', {}));

this.state = {
save: true
};
Expand All @@ -57,6 +60,7 @@ export class RPAEditor extends CachedComponent {
this.handleLayoutChange = this.handleLayoutChange.bind(this);
}


componentDidMount() {

// const {
Expand Down Expand Up @@ -241,6 +245,10 @@ export class RPAEditor extends CachedComponent {

<RunButton editor={ this._editor } />
<StatusButton editor={ this._editor } />

<Fill slot="status-bar__file" group="1_engine">
<div>Camunda 8</div>
</Fill>
</>
);
}
Expand Down
7 changes: 7 additions & 0 deletions client/src/app/tabs/rpa/RPATab.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
*/

import { createTab } from '../EditorTab';
import JSONEditor from '../json/JSONEditor';
import RPAEditor from './RPAEditor';


Expand All @@ -17,6 +18,12 @@ const RobotTab = createTab('RobotTab', [
type: 'rpa',
editor: RPAEditor,
defaultName: 'RPA'
},
{
type: 'json',
editor: JSONEditor,
isFallback: true,
defaultName: 'JSON'
}
]);

Expand Down

0 comments on commit bc92a31

Please sign in to comment.