Skip to content

Commit

Permalink
Update QuestionRenderer.vue
Browse files Browse the repository at this point in the history
  • Loading branch information
datajohnson committed Apr 11, 2024
1 parent cec59d2 commit 1877eec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/web/src/components/QuestionRenderer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@
<script>
import QuadrantRenderer from "./QuadrantRenderer.vue";
import { RenderMarkdown } from "@/utils";
import { isArray, uniq } from "lodash";
import { isArray } from "lodash";
import { nextTick } from "vue";
export default {
Expand Down Expand Up @@ -283,7 +283,7 @@ export default {
addChoiceClick(item) {
let items = (this.question.answer ?? "").split(",");
items = items.filter((i) => i);
items = uniq(items);
///items = uniq(items);
console.log("EXISTIN", items);
Expand Down

0 comments on commit 1877eec

Please sign in to comment.