code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/example/index.html b/example/index.html @@ -200,7 +200,6 @@ function getUrlParam(parameter, defaultvalue){
<script id="xmpTemplate" type="text/x-template">
<div>
<h2>XMP</h2>
- <label class="label">XMP:</label>
<json-to-ui-template v-bind:data="xmp.xmp"></json-to-ui-template>
</div>
</script>
| 2 |
diff --git a/src/components/EthVideo.js b/src/components/EthVideo.js @@ -4,10 +4,12 @@ import { ThemeContext } from "styled-components"
import darkVideo from "../assets/ethereum-hero-dark.mp4"
import lightVideo from "../assets/ethereum-hero-light.mp4"
-const EthVideo = ({ className }) => {
+const EthVideo = ({ classNam... | 9 |
diff --git a/packages/create-snowpack-app/README.md b/packages/create-snowpack-app/README.md @@ -14,6 +14,7 @@ npx create-snowpack-app new-dir --template @snowpack/app-template-NAME [--use-ya
- [@snowpack/app-template-preact](../@snowpack/app-template-preact)
- [@snowpack/app-template-react-typescript](../@snowpack/app... | 0 |
diff --git a/token-metadata/0xB9EefC4b0d472A44be93970254Df4f4016569d27/metadata.json b/token-metadata/0xB9EefC4b0d472A44be93970254Df4f4016569d27/metadata.json "symbol": "XDB",
"address": "0xB9EefC4b0d472A44be93970254Df4f4016569d27",
"decimals": 7,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
}... | 3 |
diff --git a/package.json b/package.json "opener": "^1.4.3",
"react": "^16.4.2",
"react-dom": "^16.4.2",
- "sendkeys-js": "0.0.3",
+ "sendkeys-js": "0.0.4",
"ssri": "^6.0.0",
"whatwg-fetch": "^2.0.4"
}
| 3 |
diff --git a/core/api-server/lib/datastore/storage-factory.js b/core/api-server/lib/datastore/storage-factory.js class StorageFactory {
async init(config) {
const storage = config.storageAdapters[config.defaultStorage];
+ this.moduleName = storage.moduleName;
this.adapter = require(storage.moduleName); // eslint-disabl... | 0 |
diff --git a/5th Edition OGL by Roll20 Companion/script.json b/5th Edition OGL by Roll20 Companion/script.json "script": "5th Edition OGL by Roll20 Companion.js",
"version": "1.4",
"previousversions": ["1.0","1.1","1.2","1.3"],
- "description": "Enhances the Official 5th Edition OGL by Roll20 Character Sheet. The Compa... | 3 |
diff --git a/articles/tokens/refresh-token/current/index.md b/articles/tokens/refresh-token/current/index.md @@ -75,7 +75,7 @@ The response should contain an Access Token and a Refresh Token.
```text
{
"access_token": "eyJz93a...k4laUWw",
- "Refresh Token": "GEbRxBN...edjnXbL",
+ "refresh_token": "GEbRxBN...edjnXbL",
"... | 1 |
diff --git a/test/unit/specs/utils/promiseAllObject.spec.js b/test/unit/specs/utils/promiseAllObject.spec.js @@ -84,7 +84,7 @@ const expectedResult = {
undefinedValue: undefined
};
-fdescribe("promiseAllObject", () => {
+describe("promiseAllObject", () => {
it("waits for nested promises inside object", () => {
const fo... | 2 |
diff --git a/deepfence_ui/app/scripts/components/multi-cloud-table/styles.scss b/deepfence_ui/app/scripts/components/multi-cloud-table/styles.scss .scan-status {
color: $text-secondary;
- display: inline-flex !important;
+ display: inline-block !important;
@include vertical-align;
text-transform: capitalize;
padding: 0... | 1 |
diff --git a/lib/kuzzle/kuzzle.ts b/lib/kuzzle/kuzzle.ts @@ -82,32 +82,54 @@ Reflect.defineProperty(global, 'kuzzle', {
* @extends EventEmitter
*/
export class Kuzzle extends KuzzleEventEmitter {
- private config: JSONObject;
- private _state: kuzzleStateEnum = kuzzleStateEnum.STARTING;
- private log: Logger;
- private... | 12 |
diff --git a/g2.js b/g2.js @@ -155,6 +155,8 @@ function G2() {
this._ignored_responses = 0;
this._primed = false;
this._streamDone = false;
+
+ this.lineBuffer = [];
}
util.inherits(G2, events.EventEmitter);
@@ -165,26 +167,28 @@ G2.prototype._createCycleContext = function() {
throw new Error("Cannot create a new cycle... | 2 |
diff --git a/src/mesh/build.js b/src/mesh/build.js @@ -353,6 +353,7 @@ function ui_build() {
// builds a modal dialog that updates the object and field
function field_edit(title, set) {
return function(ev) {
+ let value = ev.target.innerText;
let onclick = (ev) => {
let tempval = parseFloat($('tempval').value);
api.mod... | 11 |
diff --git a/src/Formio.js b/src/Formio.js @@ -802,7 +802,7 @@ class Formio {
.then(() => getFormio().pluginGet('request', requestArgs)
.then((result) => {
if (isNil(result)) {
- return getFormio().request(url, method, requestArgs.data, requestArgs.opts.header, requestArgs.opts);
+ return getFormio().request(requestArg... | 11 |
diff --git a/src/components/topic/snapshots/SnapshotHome.js b/src/components/topic/snapshots/SnapshotHome.js @@ -12,6 +12,7 @@ import { generateSnapshot } from '../../../actions/topicActions';
import { updateFeedback } from '../../../actions/appActions';
import ComingSoon from '../../common/ComingSoon';
import Snapshot... | 9 |
diff --git a/server/game/cards/02.2-FHaG/HighKick.js b/server/game/cards/02.2-FHaG/HighKick.js @@ -4,7 +4,6 @@ class HighKick extends DrawCard {
setupCardAbilities(ability) {
this.reaction({
title: 'Bow and Disable a character',
- //TODO--Also we have a marticipating monk character
condition: () => this.game.currentCon... | 2 |
diff --git a/test/unit/carousel.test.js b/test/unit/carousel.test.js @@ -42,13 +42,14 @@ const setup = () =>
);
describe('Carousel', () => {
- it('should return value of a prop', () => {
+ it('returns value of a prop', () => {
const carousel = setup();
const autoPlayValue = carousel.instance().getProp('autoPlay');
expe... | 7 |
diff --git a/spec/models/table_spec.rb b/spec/models/table_spec.rb @@ -1384,16 +1384,22 @@ describe Table do
table = Table.new(user_table: UserTable[data_import.table_id])
table.should_not be_nil, "Import failure: #{data_import.log}"
table.name.should match(/^twitters/)
+
@user.user_timeout = 1
@user.database_timeout =... | 7 |
diff --git a/src/libs/actions/Report.js b/src/libs/actions/Report.js @@ -527,9 +527,9 @@ function updateReportWithNewAction(reportID, reportAction) {
return;
}
- // When a new message comes in, if the New marker is not already set (newMarkerSequenceNumber === 0) and, set the
+ // When a new message comes in, if the New... | 9 |
diff --git a/userscript.user.js b/userscript.user.js @@ -52052,11 +52052,19 @@ var $$IMU_EXPORT$$;
}
}
+ function normalize_whitespace(str) {
+ // https://stackoverflow.com/a/11305926
+ return str
+ .replace(/[\u200B-\u200D\uFEFF]/g, '')
+ .replace(/[\u2800]/g, ' ');
+ }
+
function strip_whitespace(str) {
- if (!str ||... | 7 |
diff --git a/token-metadata/0xF29992D7b589A0A6bD2de7Be29a97A6EB73EaF85/metadata.json b/token-metadata/0xF29992D7b589A0A6bD2de7Be29a97A6EB73EaF85/metadata.json "symbol": "DMST",
"address": "0xF29992D7b589A0A6bD2de7Be29a97A6EB73EaF85",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/lib/plugins/aws/deploy/compile/events/apiGateway/lib/method/index.js b/lib/plugins/aws/deploy/compile/events/apiGateway/lib/method/index.js @@ -48,16 +48,19 @@ module.exports = {
extraCognitoPoolClaims = _.map(claims, (claim) => {
if (typeof claim === 'string' && claim.startsWith('custom:')) {
const subCla... | 1 |
diff --git a/CHANGELOG.md b/CHANGELOG.md ## 7.7.2 (unreleased)
-### Breaking
-
-### Feature
-
### Bugfix
- Fix bug showing wrong data in the edit view, that occured in some cases, when one would enter the edit view of a page from another page @jackahl
| 6 |
diff --git a/packages/app/src/server/models/activity.ts b/packages/app/src/server/models/activity.ts @@ -216,7 +216,7 @@ activitySchema.post('save', async(savedActivity: ActivityDocument) => {
/**
- * TODO: implement removeActivity by GW-7481
+ * TODO: improve removeActivity that decleard in InAppNotificationService by... | 10 |
diff --git a/packages/app/src/server/models/page.ts b/packages/app/src/server/models/page.ts @@ -7,7 +7,7 @@ import mongoosePaginate from 'mongoose-paginate-v2';
import uniqueValidator from 'mongoose-unique-validator';
import nodePath from 'path';
-import { getOrCreateModel, pagePathUtils, getModelSafely } from '@growi... | 13 |
diff --git a/token-metadata/0x8f3470A7388c05eE4e7AF3d01D8C722b0FF52374/metadata.json b/token-metadata/0x8f3470A7388c05eE4e7AF3d01D8C722b0FF52374/metadata.json "symbol": "VERI",
"address": "0x8f3470A7388c05eE4e7AF3d01D8C722b0FF52374",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/example/src/redux/sagas/todos.js b/example/src/redux/sagas/todos.js @@ -22,11 +22,11 @@ function* syncTodosSaga() {
}
function* saveNewTodo() {
- const uid = yield select(state => state.login.user.uid);
+ const user = yield select(state => state.login.user);
const newTodo = yield select(state => state.todo... | 11 |
diff --git a/scenes/treehouse.scn b/scenes/treehouse.scn "position": [
-6,
0.5,
- 12
+ 13
],
"quaternion": [
0,
],
"start_url": "https://webaverse.github.io/pistol/"
},
+ {
+ "position": [
+ -6,
+ 0.5,
+ 12
+ ],
+ "quaternion": [
+ 0,
+ 0,
+ 0,
+ 1
+ ],
+ "scale": [
+ 1,
+ 1,
+ 1
+ ],
+ "start_url": "https://webaverse.... | 0 |
diff --git a/packages/insomnia-app/webpack/webpack.config.base.ts b/packages/insomnia-app/webpack/webpack.config.base.ts import 'webpack-dev-server';
import path from 'path';
-import { Configuration, DefinePlugin, optimize } from 'webpack';
+import { Configuration, DefinePlugin, NormalModuleReplacementPlugin, optimize ... | 9 |
diff --git a/src/js/services/profileService.js b/src/js/services/profileService.js @@ -44,6 +44,7 @@ angular.module('canoeApp.services')
if (root.getWallet()) {
$log.info('Changed password for wallet')
root.getWallet().changePass(currentPw, pw)
+ root.enteredPassword(pw)
nanoService.saveWallet(root.getWallet(), functio... | 12 |
diff --git a/src/template.json b/src/template.json },
"weapon": {
"templates": ["itemDescription", "physicalItem", "activatedEffect", "action", "itemUsage", "modifiers", "container"],
+ "attributes": {
+ "sturdy": true
+ },
"weaponType": "basicM",
"weaponCategory": "uncategorized",
"special": "",
},
"equipment": {
"tem... | 0 |
diff --git a/ui/component/publishForm/view.jsx b/ui/component/publishForm/view.jsx @@ -229,8 +229,10 @@ function PublishForm(props: Props) {
}, [mode, updatePublishForm]);
useEffect(() => {
- if (activeChannelName) {
+ if (incognito) {
updatePublishForm({ channel: undefined });
+ } else if (activeChannelName) {
+ updat... | 12 |
diff --git a/app/views/flags/new.html.haml b/app/views/flags/new.html.haml #pageheader.column.span-24
%span.breadcrumbs
- = link_to t(:back_to_x, x: @object.try_methods( :to_plain_s, :to_s ) ), @object, class: "back crumb"
+ = link_to t(:back_to_x, noun: @object.try_methods( :to_plain_s, :to_s ) ), @object, class: "bac... | 1 |
diff --git a/docker/Dockerfile b/docker/Dockerfile -FROM ruby:2.4-alpine3.7 AS elektra
+FROM ruby:2.4-alpine3.10 AS elektra
ENV OVERLAY=sucks3
+# alpine3.10
+# nodejs (10.16.3-r0)
+# yarn (1.16.0-r0)
RUN apk --no-cache add git curl tzdata nodejs postgresql-client yarn
# Install gems with native extensions before runnin... | 4 |
diff --git a/token-metadata/0x6C8c6b02E7b2BE14d4fA6022Dfd6d75921D90E4E/metadata.json b/token-metadata/0x6C8c6b02E7b2BE14d4fA6022Dfd6d75921D90E4E/metadata.json "symbol": "CBAT",
"address": "0x6C8c6b02E7b2BE14d4fA6022Dfd6d75921D90E4E",
"decimals": 8,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/components/admin/data/widgets/form/component.js b/components/admin/data/widgets/form/component.js @@ -217,6 +217,9 @@ class WidgetForm extends PureComponent {
toastr.success('Success', `The widget "${id}" - "${name}" has been updated correctly`);
this.setState({ loading: false });
if (onSubmit) onSubmit(re... | 7 |
diff --git a/src/content/en/updates/2019/02/model-viewer.md b/src/content/en/updates/2019/02/model-viewer.md @@ -2,7 +2,7 @@ project_path: /web/_project.yaml
book_path: /web/updates/_book.yaml
description: Adding 3D models to a website can be tricky for a variety of reasons including the hosting issues and the high bar... | 1 |
diff --git a/src/core/config/OperationConfig.js b/src/core/config/OperationConfig.js @@ -3207,7 +3207,7 @@ const OperationConfig = {
]
},
"Microsoft Script Decoder": {
- description: "Decodes Microsoft Encoded Script files that have been encoded with Microsoft's custom encoding. These are often VBS (Visual Basic Script... | 0 |
diff --git a/generators/generator-base.js b/generators/generator-base.js @@ -2113,9 +2113,7 @@ module.exports = class extends PrivateBase {
if (options.skipCheckLengthOfIdentifier) {
this.jhipsterConfig.skipCheckLengthOfIdentifier = true;
}
- if (options.prettierJava !== undefined) {
- this.jhipsterConfig.prettierJava ... | 2 |
diff --git a/src/server/routes/apiv3/slack-integration-settings.js b/src/server/routes/apiv3/slack-integration-settings.js @@ -170,9 +170,9 @@ module.exports = (crowi) => {
}
}
else {
- // const proxyServerUri = settings.proxyServerUri;
+ const proxyServerUri = settings.proxyServerUri;
- // if (proxyServerUri != null) ... | 13 |
diff --git a/src/components/App.js b/src/components/App.js @@ -1959,8 +1959,13 @@ class App extends Component {
sendGTPCommand(controller, command, callback = helper.noop) {
if (controller == null) return
+ controller.sendCommand(command, callback)
+ }
+
+ async handleCommandSent({controller, command, getResponse}) {
l... | 9 |
diff --git a/src/pages/DiseasePage/ClassicAssociationsTable.js b/src/pages/DiseasePage/ClassicAssociationsTable.js @@ -254,14 +254,16 @@ function ClassicAssociationsTable({ efoId, aggregationFilters }) {
useEffect(
() => {
let isCurrent = true;
+ setLoading(true);
client
.query({
query: DISEASE_ASSOCIATIONS_QUERY,
vari... | 1 |
diff --git a/src/modules/html.js b/src/modules/html.js x: 0,
y: 0,
html2canvas: {},
- jsPDF: {}
+ jsPDF: {},
+ backgroundColor: "transparent"
}
};
right: 0,
top: 0,
margin: "auto",
- backgroundColor: this.opt.backgroundColor || "transparent"
+ backgroundColor: this.opt.backgroundColor
}; // Set the overlay to hidden (c... | 12 |
diff --git a/src/qrcode/qrcard.jsx b/src/qrcode/qrcard.jsx @@ -66,7 +66,7 @@ function QRCard({
<div id="instructions">
<InstructionIcon stylingClass="instruction-icon" />
<span>
- To pay, open the Venmo app and <br />scan the QR code above.
+ To pay, scan the QR code with <br />your Venmo app
</span>
</div>
<QRCodeElem... | 1 |
diff --git a/Source/Scene/Camera.js b/Source/Scene/Camera.js @@ -368,10 +368,14 @@ Camera.prototype._updateCameraChanged = function () {
camera._changedHeading = currentHeading;
}
- var headingChanged = camera._changedHeading !== camera.heading;
+ var headingChanged = camera._changedHeading !== currentHeading;
+ var he... | 3 |
diff --git a/server/views/sources/collection.py b/server/views/sources/collection.py @@ -539,14 +539,14 @@ def collection_update(collection_id):
show_on_media = request.form['showOnMedia'] if 'showOnMedia' in request.form else None
source_ids = []
if len(request.form['sources[]']) > 0:
- source_ids = [sid for sid in re... | 9 |
diff --git a/src/transforms/groupby.js b/src/transforms/groupby.js @@ -172,7 +172,7 @@ function transformOne(trace, state) {
var groups = trace.transforms[transformIndex].groups;
var originalPointsAccessor = pointsAccessorFunction(trace.transforms, opts);
- if(!(Array.isArray(groups)) || groups.length === 0) {
+ if(!(L... | 0 |
diff --git a/data.js b/data.js @@ -5133,8 +5133,8 @@ module.exports = [
name: "microBench",
github: "kmpatel/microBench",
tags: ["performance", "benchmark"],
- description: "Tiny, simple framework to bench mark you JS code in browser console",
+ description: "Tiny, simple framework to benchmark your JS functions in bro... | 0 |
diff --git a/src/libs/OptionsListUtils.js b/src/libs/OptionsListUtils.js @@ -491,9 +491,9 @@ function getOptions(reports, personalDetails, activeReportID, {
const reportPersonalDetails = getPersonalDetailsForLogins(logins, personalDetails);
- // Save the report in the map if this is a single participant (with the excep... | 13 |
diff --git a/packages/idyll-layouts/src/blog/styles.js b/packages/idyll-layouts/src/blog/styles.js @@ -92,6 +92,10 @@ input {
border-radius: 17px;
}
+.author-view-button:focus {
+ outline: none;
+}
+
.component-debug-view:hover > .author-view-button {
opacity: 1;
transition: opacity 600ms linear;
| 2 |
diff --git a/src/index.ts b/src/index.ts @@ -360,7 +360,14 @@ export async function cli(args: string[]) {
process.exit(0);
}
- const pkgManifest = require(path.join(cwd, 'package.json'));
+
+ const pkgManifestPath = path.join(cwd, 'package.json');
+
+ if (!fs.existsSync(pkgManifestPath)) {
+ return console.log(chalk.re... | 7 |
diff --git a/packages/frontend/src/redux/reducers/sign/index.js b/packages/frontend/src/redux/reducers/sign/index.js @@ -64,6 +64,22 @@ const sign = handleActions({
status: payload.status
};
},
+ [multiplyGas]: (state, { payload: { transactions: transactionsString } }) => {
+ let transactions = transactionsString.split... | 9 |
diff --git a/lib/waterline/utils/query/help-find.js b/lib/waterline/utils/query/help-find.js @@ -112,7 +112,7 @@ module.exports = function helpFind(WLModel, s2q, omen, done) {
// Run the stage 3 query and proceed.
parentAdapter.join(parentDatastoreName, parentQuery, function (err, rawResultFromAdapter) {
if (err) {
- e... | 4 |
diff --git a/interpolants.js b/interpolants.js @@ -55,3 +55,91 @@ export class InfiniteActionInterpolant extends ScalarInterpolant {
}
}
}
+
+const _makeSnapshots = (Constructor, numFrames) => {
+ const result = Array(numFrames);
+ for (let i = 0; i < numFrames; i++) {
+ result[i] = {
+ startValue: new Constructor(),
+... | 0 |
diff --git a/lib/manager/components/transform/FeedTransformation.js b/lib/manager/components/transform/FeedTransformation.js @@ -40,6 +40,8 @@ const transformationTypes = {
}
}
+const TABLE_MUST_BE_DEFINED_ERROR = 'Table must be defined'
+
/**
* Component that renders fields for one feed transformation
* (e.g., Replace... | 1 |
diff --git a/services/data-hub/src/cfm/conflict-manager.ts b/services/data-hub/src/cfm/conflict-manager.ts @@ -4,7 +4,7 @@ const cfm = new CFM();
// Set rules for address-schema
cfm.setRules({
- uniqArray: ['addresses', 'contactData', 'categories'],
+ uniqArray: ['contactData.[]', 'addresses.[]', 'categories.[]'],
copy... | 1 |
diff --git a/tests/browser/nightwatch.js b/tests/browser/nightwatch.js @@ -81,7 +81,8 @@ module.exports = {
// Enter input
browser
.useCss()
- .setValue("#input-text", "Don't Panic.");
+ .setValue("#input-text", "Don't Panic.")
+ .click("#bake");
// Check output
browser
| 0 |
diff --git a/README.md b/README.md @@ -41,12 +41,13 @@ The diagram below depicts a high-level view of the various modules, registries,
## Components
### SecurityToken
`SecurityToken` is an implementation of the ST-20 protocol that allows the addition of different modules to control its behavior. Different modules can b... | 3 |
diff --git a/src/indexPage/index.js b/src/indexPage/index.js @@ -30,7 +30,8 @@ export const popupToken = getStorage('setPopupToken');
// eslint-disable-next-line arrow-body-style
export const expirationDate = () => {
- return today + oneMilliSec * oneMinute * oneMinute * oneDay * twentyOneDays;
+ // return today + oneM... | 12 |
diff --git a/tests/e2e/specs/modules/analytics/setup-with-account-no-tag.test.js b/tests/e2e/specs/modules/analytics/setup-with-account-no-tag.test.js @@ -184,9 +184,10 @@ describe( 'setting up the Analytics module with an existing account and no exist
// See the selects populate
await expect( page ).toMatchElement( '.... | 1 |
diff --git a/magda-minion-framework/src/registerWebhook.ts b/magda-minion-framework/src/registerWebhook.ts @@ -15,9 +15,10 @@ export default async function registerNewWebhook(
const webHookConfig = buildWebhookConfig(options);
+ const userId = "b1fddd6f-e230-4068-bd2c-1a21844f1598";
const newWebHook: WebHook = {
id: op... | 4 |
diff --git a/package.json b/package.json {
"name": "minimap",
"main": "./lib/main",
- "version": "4.29.5",
+ "version": "4.29.6",
"private": true,
"description": "A preview of the full source code.",
"author": "Fangdun Cai <cfddream@gmail.com>",
| 6 |
diff --git a/package.json b/package.json "think-payload": "^1.0.0",
"think-pm2": "^1.0.0",
"think-resource": "^1.0.0",
- "think-router": "^1.0.0",
+ "think-router": "^1.3.1",
"think-trace": "^1.0.2",
"think-validator": "^1.0.2"
},
| 3 |
diff --git a/src/apps.json b/src/apps.json ],
"icon": "FancyBox.png",
"implies": "jQuery",
- "script": "jquery\\.fancybox\\.pack\\.js(?:\\?v=([\\d.]+))?$\\;version:\\1",
+ "script": "jquery\\.fancybox(\\.pack|\\.min)?\\.js(\\?v=([\\d.]+))?$\\;version:\\3",
"website": "http://fancyapps.com/fancybox"
},
"Fastly": {
| 7 |
diff --git a/karma.conf.js b/karma.conf.js @@ -6,47 +6,38 @@ module.exports = function (config) {
// Check out https://saucelabs.com/platforms for all browser/OS combos
var customLaunchers = {
sl_chrome_49: {
- base: 'SauceLabs',
browserName: 'chrome',
version: '49'
},
sl_firefox_70: {
- base: 'SauceLabs',
browserName:... | 7 |
diff --git a/src/index.js b/src/index.js @@ -874,8 +874,9 @@ class Offline {
this.serverlessLog(message);
if (stackTrace && stackTrace.length > 0) {
console.log(stackTrace);
- } else {
- console.log(err)
+ }
+ else {
+ console.log(err);
}
/* eslint-disable no-param-reassign */
| 7 |
diff --git a/src/server/routes/apiv3/forgot-password.js b/src/server/routes/apiv3/forgot-password.js @@ -51,6 +51,11 @@ module.exports = (crowi) => {
try {
// need to handle passwordResetOrderData when user not found and not active by GW7060
const passwordResetOrderData = await PasswordResetOrder.createPasswordResetOrd... | 9 |
diff --git a/src/enhancer.js b/src/enhancer.js @@ -258,7 +258,7 @@ function createComposedFromStatelessFunc(
return ComposedComponent;
}
-function createComposedFromEsm(ComposedComponent: constructor) {
+function createComposedFromNativeClass(ComposedComponent: constructor) {
ComposedComponent = (function(OrigComponent... | 7 |
diff --git a/README.md b/README.md @@ -24,7 +24,7 @@ After Effects plugin for exporting animations to svg/canvas/html + js or nativel
# Plugin installation
### Option 1 (Recommended):
-**Download it from from AE scripts:**
+**Download it from from aescripts + aeplugins:**
http://aescripts.com/bodymovin/
### Option 2:
| 3 |
diff --git a/OurUmbraco/Our/Controllers/RegisterController.cs b/OurUmbraco/Our/Controllers/RegisterController.cs @@ -30,6 +30,10 @@ namespace OurUmbraco.Our.Controllers
[CaptchaValidator]
public ActionResult HandleSubmit(RegisterModel model)
{
+ var recaptcha = ModelState["ReCaptcha"];
+ if (recaptcha != null && HttpCo... | 11 |
diff --git a/packages/spark-core/components/modals.js b/packages/spark-core/components/modals.js * Modal Functionality
* Hides Modals, Shows Modals, Sets up Aria
* Expects:
- * - modal container to have attribute `data-sprk-modal="customID"`
+ * - main body content container to have attribute `data-sprk-main`
+ * - mod... | 3 |
diff --git a/src/styles/getTooltipStyles.js b/src/styles/getTooltipStyles.js @@ -36,8 +36,12 @@ export default function getTooltipStyles(
tooltipWidth,
tooltipHeight,
) {
+ // Determine if the tooltip should display below the wrapped component.
const windowWidth = Dimensions.get('window').width;
const shouldShowBelow =... | 7 |
diff --git a/packages/component-library/src/RadioButtonGroup/RadioButtonGroup.js b/packages/component-library/src/RadioButtonGroup/RadioButtonGroup.js @@ -33,7 +33,6 @@ const RadioButtonGroup = ({
onChange={onChange}
value={value}
row={row}
- inputProps={{ "aria-labelledby": { grpLabel } }}
>
{labels.map(label => (
<Fo... | 2 |
diff --git a/README.md b/README.md -
+
[](https://npmjs.com/package/embark)
[ {
// hoverinfo is a combination of 'count' and 'probability'
// Mouse
- var hoverX = d3.mouse(this)[0];
+ var hoverX = Lib.getPositionFromD3Event()[0];
// Label
var gd = d.parcatsViewModel.graphDiv;
... | 14 |
diff --git a/src/NetworkEntities.js b/src/NetworkEntities.js @@ -69,7 +69,7 @@ class NetworkEntities {
if (NAF.options.syncSource && source !== NAF.options.syncSource) return;
var networkId = entityData.networkId;
- const entityOwnerActive = NAF.connection.activeDataChannels[entityData.owner] === false;
+ const entityO... | 4 |
diff --git a/src/libs/actions/IOU.js b/src/libs/actions/IOU.js @@ -343,7 +343,7 @@ function splitBill(participants, currentUserLogin, amount, comment, currency, lo
const {groupData, splits, onyxData} = createSplitsAndOnyxData(participants, currentUserLogin, amount, comment, currency, locale);
API.write('SplitBill', {
-... | 10 |
diff --git a/test/acceptance/named_maps_static_view.js b/test/acceptance/named_maps_static_view.js @@ -217,7 +217,7 @@ describe('named maps static view', function() {
}
getStaticMap({ bbox: '0,45,90,45' }, function(err, img) {
assert.ok(!err);
- assert.imageIsSimilarToFile(img, previewFixture('override-zoom'), IMAGE_TO... | 4 |
diff --git a/appjs/logicjavascript.js b/appjs/logicjavascript.js @@ -16310,9 +16310,14 @@ function cscu1find(){
function cscu2find(){
let R = parseInt(document.getElementById("cscu2").value)
+ if(!isNaN(R)){
var h = (4 * R) / 3;
var r = (2 *Math.sqrt(2) * R) / 3;
- document.getElementById("cscu1ans").innerHTML= "The ra... | 1 |
diff --git a/src/hooks/useSSR.js b/src/hooks/useSSR.js import { getI18n } from './context';
-let initializedOnce = false;
+let initializedLanguageOnce = false;
+let initializedStoreOnce = false;
export function useSSR(initialI18nStore, initialLanguage) {
// only set this once
- if (initializedOnce) return;
+ if (initia... | 11 |
diff --git a/package.json b/package.json "redux-throttle": "0.1.1",
"rimraf": "^2.6.1",
"scratch-audio": "0.1.0-prerelease.20180625202813",
- "scratch-blocks": "0.1.0-prerelease.1531313153",
+ "scratch-blocks": "0.1.0-prerelease.1531338038",
"scratch-l10n": "3.0.20180703181510",
"scratch-paint": "0.2.0-prerelease.20180... | 4 |
diff --git a/tests/providerTest.js b/tests/providerTest.js @@ -22,6 +22,7 @@ describe('provider testing', () => {
opts.pactBrokerUrl = 'https://jankaritech.pactflow.io'
opts.publishVerificationResult = true
opts.pactBrokerToken = process.env.PACTFLOW_TOKEN
+ opts.enablePending = true
opts.consumerVersionSelectors = [
{... | 4 |
diff --git a/protocols/swap/contracts/Swap.sol b/protocols/swap/contracts/Swap.sol @@ -46,7 +46,7 @@ contract Swap is ISwap {
// Mapping of signer address to a delegated signer and expiry
mapping (address => mapping (address => uint256)) public signerAuthorizations;
- // Mapping of signers to nonces with value _AVAILAB... | 3 |
diff --git a/examples/__tests__/__snapshots__/SimpleSlider.test.js.snap b/examples/__tests__/__snapshots__/SimpleSlider.test.js.snap exports[`Simple Slider Snapshots click on 3rd dot 1`] = `
"<div>
<h2> Single Item</h2>
- <div class=\\"slick-initialized slick-slider\\"><button type=\\"button\\" data-role=\\"none\\" cla... | 3 |
diff --git a/Source/Widgets/CesiumInspector/Cesium3DTilesInspectorViewModel.js b/Source/Widgets/CesiumInspector/Cesium3DTilesInspectorViewModel.js @@ -371,6 +371,11 @@ define([
that._style = old;
that._editorError = err.toString();
}
+
+ // set feature again so pick coloring is set
+ var temp = that._feature;
+ that._f... | 7 |
diff --git a/src/selection-handler.js b/src/selection-handler.js @@ -92,7 +92,6 @@ Object.assign(SelectionHandler.prototype, require('./function-bind'), require('.
this.editor.mouseDown = true;
this.selecting = this.startIndex !== this.endIndex;
this.removeNativeSelection();
- console.log("move:on");
window.addEventLis... | 2 |
diff --git a/app/scripts/StackedBarTrack.js b/app/scripts/StackedBarTrack.js @@ -13,8 +13,6 @@ export class StackedBarTrack extends BarTrack {
}
initTile(tile) {
-
- // todo findmax and min up here too?
this.renderTile(tile);
}
@@ -32,7 +30,7 @@ export class StackedBarTrack extends BarTrack {
for(let i = 0; i < visible... | 2 |
diff --git a/helpers/wrapper/reports/SECURITY.md b/helpers/wrapper/reports/SECURITY.md @@ -6,11 +6,11 @@ Wrapper [Source Code](https://github.com/airswap/airswap-protocols/tree/master/h
## Introduction
-Wrapper is a frontend for a Swap contract to enable sending and receiving ether (ETH) for wrapped ether (WETH) trades... | 3 |
diff --git a/vis/js/canvas.js b/vis/js/canvas.js @@ -247,7 +247,8 @@ class Canvas {
chart_title = config.title;
} else if (config.create_title_from_context_style === 'openaire') {
let maxTitleLength = 47 // This should probably make it's way to a more global config
- let compressedTitle = ( context.params.title.length ... | 14 |
diff --git a/includes/Core/Notifications/Notifications.php b/includes/Core/Notifications/Notifications.php @@ -202,8 +202,8 @@ class Notifications {
$body = wp_remote_retrieve_body( $response );
$decoded = json_decode( $body, true );
- if ( null === $decoded ) {
- throw new Exception( __( 'Failed to parse response', 'g... | 7 |
diff --git a/userscript.user.js b/userscript.user.js @@ -769,6 +769,7 @@ var $$IMU_EXPORT$$;
is_original: false,
norecurse: false,
forcerecurse: false,
+ can_cache: true,
bad: false,
bad_if: [],
fake: false,
@@ -27173,6 +27174,74 @@ var $$IMU_EXPORT$$;
.replace(/(\/potd\/entrants\/[0-9]+\/[^/]*)-[a-z]+(\.[^/.]*)$/, "$1... | 7 |
diff --git a/webpack.config.js b/webpack.config.js @@ -168,8 +168,8 @@ const popupConfig = Object.assign({}, getBaseConfig(), {
const setupConfig = Object.assign({}, getBaseConfig(), {
entry: {
index: path.resolve(SRC_SETUP, "./index.js"),
- vendor: [...REACT_PACKAGES, "dropbox", "dropbox-fs", "webdav", "buttercup"],
-... | 2 |
diff --git a/public/viewjs/choreform.js b/public/viewjs/choreform.js @@ -166,11 +166,13 @@ $('.input-group-chore-period-type').on('change keyup', function(e)
else if (periodType === 'daily')
{
$('#chore-schedule-info').text(__n(periodInterval, "This means the next execution of this chore is scheduled at the same time (... | 1 |
diff --git a/edit.js b/edit.js @@ -40,6 +40,7 @@ import {planet} from './planet.js';
import {Bot} from './bot.js';
import './atlaspack.js';
import {Sky} from './Sky.js';
+import {GuardianMesh} from './land.js';
import TinyQueue from './tinyqueue.js';
const apiHost = 'https://ipfs.exokit.org/ipfs';
@@ -1688,6 +1689,12 @... | 0 |
diff --git a/example/src/examples/UserLocationChange.js b/example/src/examples/UserLocationChange.js @@ -62,12 +62,18 @@ class UserLocationChange extends React.Component {
return (
<Page {...this.props}>
<MapboxGL.MapView
- zoomLevel={16}
- showUserLocation={true}
- onUserLocationUpdate={this.onUserLocationUpdate}
- us... | 3 |
diff --git a/token-metadata/0xf552b656022c218C26dAd43ad88881Fc04116F76/metadata.json b/token-metadata/0xf552b656022c218C26dAd43ad88881Fc04116F76/metadata.json "symbol": "MORK",
"address": "0xf552b656022c218C26dAd43ad88881Fc04116F76",
"decimals": 4,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/token-metadata/0xd4cA5c2AFf1eeFb0BeA9e9Eab16f88DB2990C183/metadata.json b/token-metadata/0xd4cA5c2AFf1eeFb0BeA9e9Eab16f88DB2990C183/metadata.json "symbol": "XRPC",
"address": "0xd4cA5c2AFf1eeFb0BeA9e9Eab16f88DB2990C183",
"decimals": 8,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/src/Views/tickets/partials/ticket_body.blade.php b/src/Views/tickets/partials/ticket_body.blade.php <div class="row">
<div class="col-md-6">
- <h4>Description</h4>
+ <div>
+ <b>Description</b>
+ </div>
<p> {!! $ticket->html !!} </p>
</div>
<div class="col-md-6">
- <h4>Intervention</h4>
+ <div>
+ <b>Interve... | 7 |
diff --git a/.github/workflows/build-zips.yml b/.github/workflows/build-zips.yml -name: build-pr
+name: build-zips
on:
push:
@@ -61,7 +61,7 @@ jobs:
deploy-to-wiki:
runs-on: ubuntu-latest
- needs: build-pr
+ needs: build-zips
steps:
- uses: actions/checkout@v2
with:
| 3 |
diff --git a/src/flagged/applyComplexClasses.js b/src/flagged/applyComplexClasses.js @@ -139,15 +139,11 @@ function mergeAdjacentRules(initialRule, rulesToInsert) {
function makeExtractUtilityRules(css, config) {
const utilityMap = buildUtilityMap(css)
- const orderUtilityMap = _.fromPairs(
- _.flatMap(_.toPairs(utilit... | 2 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.