This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
Commit 4f468944 authored by Eduard Frankford's avatar Eduard Frankford
Browse files

fixed action buttons

parent 703d040c
2 merge requests!188Merging Peer Reviewing et. al to Master,!164211 peer reviewing functionality
......@@ -221,14 +221,15 @@
</label>
</span>
</div>
<a
*ngFor="let action of exercise.originalResult.supportedActions"
class="btn btn-outline-secondary positionAction col-6"
role="button"
aria-pressed="true"
(click)="startAction(action, exercise)"
>{{ action.commandName }}</a
>
<div class="col-6" *ngFor="let action of exercise.originalResult.supportedActions">
<a
class="btn btn-outline-secondary positionAction col-6"
role="button"
aria-pressed="true"
(click)="startAction(action, exercise)"
>{{ action.commandName }}</a
>
</div>
<div class="col-6" placement="bottom">
<span [ngbTooltip]="helpComingSoon">
<button
......
......@@ -27,7 +27,7 @@ export class ExerciseDetailsComponent implements OnInit, OnDestroy {
@Output() exerciseChangedEvent = new EventEmitter<Exercise>();
markDownExercise: Exercise | undefined;
actions = ['export to artemis', 'test', 'test2'];
account: Account | null = null;
authSubscription?: Subscription;
hasLiked: Boolean | null = null;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment