Skip to content

Commit

Permalink
fixed failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jdmartinez1062 committed Dec 13, 2023
1 parent bb87922 commit 928250e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
import Component from "@glimmer/component";
import { tracked } from "@glimmer/tracking";
import { action } from "@ember/object";
import { inject as service } from "@ember/service";
import { ajax } from "discourse/lib/ajax";
import { popupAjaxError } from "discourse/lib/ajax-error";

export function buildAnchorId(commentId) {
return `post-voting-comment-${commentId}`;
}

export default class PostVotingComment extends Component {
@service currentUser;
@tracked isEditing = false;
@tracked isVoting = false;

Expand Down

0 comments on commit 928250e

Please sign in to comment.