Skip to content

Commit

Permalink
Merge pull request #87 from Brightscout/release-1.2.0
Browse files Browse the repository at this point in the history
Bump plugin version to 1.2.0
  • Loading branch information
ayusht2810 authored Oct 20, 2022
2 parents 3f633d6 + 777e45c commit 8109f0c
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 16 deletions.
2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"name": "Servicenow Plugin",
"description": "This plugin serves as an integration between Mattermost and ServiceNow.",
"icon_path": "assets/starter-template-icon.svg",
"version": "1.1.4",
"version": "1.2.0",
"min_server_version": "5.37.0",
"server": {
"executables": {
Expand Down
2 changes: 1 addition & 1 deletion server/plugin/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ var manifest = struct {
Version string
}{
ID: "mattermost-plugin-servicenow",
Version: "1.1.4",
Version: "1.2.0",
}
15 changes: 10 additions & 5 deletions webapp/src/containers/Rhs/rhs.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
.rhs-content {
height: calc(100% - #{$rhs-header-height});

&__header {
display: flex;
justify-content: space-between;
align-items: center;
}

&__subscriptions {
font-weight: bold;
}
Expand Down Expand Up @@ -46,17 +52,16 @@
}

.share-record-btn {
display: flex;
align-items: center;
justify-content: center;
padding: 0px 30px;
width: 88px;
height: 40px;
border-radius: 4px;
margin-bottom: 10px;
margin-left: 195px;
}

.share-record-icon {
position: absolute;
top: 27px;
left: 307px;
margin-right: 3px;
margin-top: 4px;
}
20 changes: 11 additions & 9 deletions webapp/src/containers/Rhs/rhsData.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,20 +105,22 @@ const RhsData = ({

return (
<>
<div>
<div className='rhs-content__header'>
<span className='rhs-content__subscriptions'>{Constants.RhsSubscritpions}</span>
<button
className='btn btn-primary share-record-btn'
onClick={() => dispatch(showRecordModal())}
>
<SvgWrapper
width={16}
height={16}
viewBox='0 0 14 12'
className='share-record-icon'
>
{SVGIcons.share}
</SvgWrapper>
<span>
<SvgWrapper
width={16}
height={16}
viewBox='0 0 14 12'
className='share-record-icon'
>
{SVGIcons.share}
</SvgWrapper>
</span>
{Constants.ShareRecordButton}
</button>
</div>
Expand Down

0 comments on commit 8109f0c

Please sign in to comment.