aboutsummaryrefslogtreecommitdiffstats
path: root/src/components
diff options
context:
space:
mode:
authorLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2021-05-22 16:08:17 +0530
committerLibravatar GitHub <noreply@github.com>2021-05-22 12:38:17 +0200
commit4e6f94d6102184025b65da085d60d6f3dca6f39c (patch)
treef9593eba579bbbdfef136c5e562cb2e373f2199b /src/components
parentIgnore more folders/files while using the Dockerfile for building. [skip ci] (diff)
downloadferdium-app-4e6f94d6102184025b65da085d60d6f3dca6f39c.tar.gz
ferdium-app-4e6f94d6102184025b65da085d60d6f3dca6f39c.tar.zst
ferdium-app-4e6f94d6102184025b65da085d60d6f3dca6f39c.zip
Expose recipe version in 'Settings' dialog while adding or editing a service. (#1439)
Diffstat (limited to 'src/components')
-rw-r--r--src/components/settings/services/EditServiceForm.js6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/components/settings/services/EditServiceForm.js b/src/components/settings/services/EditServiceForm.js
index 80f60b3e1..025a667db 100644
--- a/src/components/settings/services/EditServiceForm.js
+++ b/src/components/settings/services/EditServiceForm.js
@@ -478,12 +478,16 @@ export default @observer class EditServiceForm extends Component {
478 onClick={() => openRecipeFile('user.js')} 478 onClick={() => openRecipeFile('user.js')}
479 /> 479 />
480 </div> 480 </div>
481 <p style={{ marginTop: 10 }}> 481 <p style={{ marginTop: 10, marginBottom: 10 }}>
482 <span className="mdi mdi-information" /> 482 <span className="mdi mdi-information" />
483 {intl.formatMessage(messages.recipeFileInfo)} 483 {intl.formatMessage(messages.recipeFileInfo)}
484 </p> 484 </p>
485 </> 485 </>
486 )} 486 )}
487 <span style={{ fontStyle: 'italic', fontSize: '80%' }}>
488 Recipe version:
489 {recipe.version}
490 </span>
487 </div> 491 </div>
488 <div className="settings__controls"> 492 <div className="settings__controls">
489 {/* Delete Button */} 493 {/* Delete Button */}