Skip to content

Commit

Permalink
Merge pull request #1103 from Esri/manager-click-list
Browse files Browse the repository at this point in the history
remove calcite flow item
  • Loading branch information
jmhauck authored Jan 15, 2025
2 parents d51d43a + fdd4b3c commit 54fcf1f
Showing 1 changed file with 14 additions and 16 deletions.
30 changes: 14 additions & 16 deletions src/components/card-manager/card-manager.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -253,22 +253,20 @@ export class CardManager {
</div>
</calcite-shell >
<calcite-shell class={"position-relative " + messageClass}>
<calcite-flow-item>
<calcite-panel>
<div class={"padding-1"}>
<calcite-notice icon={this.selectingFeatureFromMap ? "map" : "table"} iconFlipRtl open>
<div slot="message">{guideMsg}</div>
</calcite-notice>
</div>
{!this.isMobile && showCreateFeatureOrRecordBtn && <calcite-button
disabled={!this.layer}
onClick={() => this._createFeatureBtnClicked()}
slot="footer"
width="full">
{isTable ? this._translations.createRecord : this._translations.createFeature}
</calcite-button>}
</calcite-panel>
</calcite-flow-item>
<calcite-panel>
<div class={"padding-1"}>
<calcite-notice icon={this.selectingFeatureFromMap ? "map" : "table"} iconFlipRtl open>
<div slot="message">{guideMsg}</div>
</calcite-notice>
</div>
{!this.isMobile && showCreateFeatureOrRecordBtn && <calcite-button
disabled={!this.layer}
onClick={() => this._createFeatureBtnClicked()}
slot="footer"
width="full">
{isTable ? this._translations.createRecord : this._translations.createFeature}
</calcite-button>}
</calcite-panel>
</calcite-shell>

<calcite-shell class={"position-relative " + createFeatureClass}>
Expand Down

0 comments on commit 54fcf1f

Please sign in to comment.