# extendify/3.1.5/src/Agent/workflows/content/edit-post-strings-editor.js

Extendify, version 3.1.5. 15 lines.

- Page: https://pluginprobe.com/plugins/extendify/3.1.5/code/src/Agent/workflows/content/edit-post-strings-editor.js
- Raw: https://pluginprobe.com/plugins/extendify/3.1.5/raw/src/Agent/workflows/content/edit-post-strings-editor.js
- Modified: 2025-09-09T15:55:14+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/extendify/3.1.5/code/src/Agent/workflows/content/edit-post-strings-editor.js#L10-L20`.

```javascript
import { UpdatePostConfirmEditor } from '@agent/workflows/content/components/UpdatePostConfirmEditor';

const { abilities, context } = window.extAgentData;

// When on the edit screen
export default {
	available: () =>
		abilities?.canEditPost &&
		context?.usingBlockEditor &&
		context?.adminPage &&
		context?.postId,
	id: 'edit-post-strings-editor',
	whenFinished: { component: UpdatePostConfirmEditor },
};

```
