• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

microsoft / BotFramework-Composer / 9116370224

16 May 2024 05:08PM UTC coverage: 54.421%. Remained the same
9116370224

push

github

web-flow
fix: Error when loading exported bot (#9587)

* Update c# runtimes to use the .csproj name

* Update yarn-berry.lock files

* Fix hash

---------

Co-authored-by: Joel Mut <joel.mut@southworks.com>
Co-authored-by: Eugene <EOlonov@gmail.com>

7577 of 18339 branches covered (41.32%)

Branch coverage included in aggregate %.

0 of 1 new or added line in 1 file covered. (0.0%)

19745 of 31866 relevant lines covered (61.96%)

26.54 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/Composer/packages/client/src/components/ComposerFeature.tsx
1
// Copyright (c) Microsoft Corporation.
2
// Licensed under the MIT License.
3
import { FeatureFlagKey } from '@botframework-composer/types';
4
import React, { Fragment } from 'react';
×
5

6
import { useFeatureFlag } from '../utils/hooks';
×
7

8
type ComposerFeatureProps = {
9
  featureFlagKey: FeatureFlagKey;
10
};
11

12
export const ComposerFeature: React.FC<ComposerFeatureProps> = (props) => {
×
13
  const { featureFlagKey } = props;
×
14
  const featureIsEnabled = useFeatureFlag(featureFlagKey);
×
15
  return <Fragment>{featureIsEnabled ? props.children : null}</Fragment>;
×
16
};
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc