diff --git a/client/src/gql/graphql.ts b/client/src/gql/graphql.ts index 592ff0c2..6d0b1f23 100644 --- a/client/src/gql/graphql.ts +++ b/client/src/gql/graphql.ts @@ -433,6 +433,7 @@ export type LearningContentEdoniqTestObjectType = CoursePageInterface & Learning course?: Maybe; description: Scalars['String']['output']; frontend_url: Scalars['String']['output']; + has_extended_time_test: Scalars['Boolean']['output']; id: Scalars['ID']['output']; live: Scalars['Boolean']['output']; minutes?: Maybe; diff --git a/client/src/gql/schema.graphql b/client/src/gql/schema.graphql index d8e91139..40648cbf 100644 --- a/client/src/gql/schema.graphql +++ b/client/src/gql/schema.graphql @@ -463,6 +463,7 @@ type LearningContentEdoniqTestObjectType implements CoursePageInterface & Learni can_user_self_toggle_course_completion: Boolean! circle: CircleLightObjectType competence_certificate: CompetenceCertificateObjectType + has_extended_time_test: Boolean! } type CourseSessionUserObjectsType { diff --git a/client/src/pages/competence/PerformanceCriteriaPage.vue b/client/src/pages/competence/PerformanceCriteriaPage.vue index b477d563..f69a8f7f 100644 --- a/client/src/pages/competence/PerformanceCriteriaPage.vue +++ b/client/src/pages/competence/PerformanceCriteriaPage.vue @@ -1,8 +1,8 @@